Thursday, February 6, 2020

Delete Database

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!

No comments:

Post a Comment

Right Joins

-- OUR FIRST RIGHT JOIN (seems the same as a left join?) SELECT * FROM customers RIGHT JOIN orders     ON customers.id = orders.custom...