To drop a database:
DROP DATABASE database_name;
For Example:
DROP DATABASE hello_world_db;
Remember to be careful with this command! Once you drop a database, it's gone!
-- OUR FIRST RIGHT JOIN (seems the same as a left join?) SELECT * FROM customers RIGHT JOIN orders ON customers.id = orders.custom...
No comments:
Post a Comment