Friday, February 7, 2020

Deleting tables

Dropping Tables

DROP TABLE <tablename>; 
A specific example:
DROP TABLE cats; 
Be careful with this command!

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...