1IF NOT EXISTS
If you run 'CREATE TABLE users' twice, the second time it will crash with an error because the table already exists. Best practice is to use 'CREATE TABLE IF NOT EXISTS users'. This makes your script 'Idempotent'—safe to run 100 times without crashing.
