The SQL query CREATE TABLE mytable IF NOT EXISTS
returns true (in my PHP app) if the query ran correctly, but not if the table was actually created.
How can I tell if the table was created without running another query? I don't want to run double the amount of queries every single time my app runs.