MySQL Commands
There are many sites that will provide far greater detail and comment than this one. However, this is a list of basic commands that I have found repeatedly useful. MySQL Commands Create a database create database databasename; List all databases show databases; Switch to a database use databasename; Show tables in a database show tables; Delete a database drop database…
Read More »