Thursday, February 6, 2020

Using Databases

  1. USE <database name>;
  2.  
  3. -- example:
  4. USE dog_walking_app;
  5.  
  6. SELECT database();

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