mhpreiman
1/24/2017 - 10:31 PM

MySQL commands

.
  `COUNT(*)`     returns the number of records in a table   `SELECT COUNT(*) FROM film`  


Various queries

Copy data from one table to another

SELECT *
INTO newtable [IN externaldb]
FROM table1;