Have two separate databases. The master that holds the user information(username, password, address etc.). The slave database only has one table where the user name and password. I would like to happen is then an new user on the master db i created that the username and password is also added to the slave db.
Have two separate databases. The master that holds the user information(username, password, address etc.).
Share
You can do this with either a TRIGGER or STORED PROCEDURE.
In your case i guess you could use something like this (not tested):