Is there anyway to have (in one query) two separate queries? For example if query one fails then it will not affect the rest of it. Example code:
Say that the lastLogin table does not exist:
UPDATE userInfo SET lastLogin=3 WHERE id=5
UPDATE userInfo SET LastLogin=3 WHERE id=5
Is there anyway to get the second line to execute (in a single query) even though the first line would cause an error?