Mysql Commands
Categories: Linux Commands, mysqlTo login (from unix shell) use -h only if needed. # [mysql dir]mysql -u username -p Create a database on the sql server. mysql> create database [databasename]; List all databases on the sql server. mysql> show databases; Switch to a database. mysql> use [db name]; To see all the tables in the db. mysql> show [ Read More ]







