Basic MySQL Commands to Know
Some handy commands for MySQL: mysql -u root -p will login to mysql as root and prompt for the password show databases; will list the databases that exist use databasename; Switches to the database name show tables; lists the...
Read More