I have a mySQL database that might have a table named jason
.
A separate instance of the database may not have the jason
table (it would have other tables in common)
I'd like to run a simple update against both databases but the update is for the jason
table.
I know I can do something like
DROP TABLE IF EXISTS `jason`;
Is it possible to run an Update something like:
IF EXISTS `jason` UPDATE `jason` SET...
I can't seem to get anything to work.