I have a mySQL database that can have a table named jason . A single database instance may not have a jason table (it would have common shared tables)
I would like to run a simple update for both databases, but an update for the jason table.
I know I can do something like
DROP TABLE IF EXISTS `jason`;
Is it possible to run Update something like:
IF EXISTS `jason` UPDATE `jason` SET...
I can't seem to work anything.
Jason source share