Command Desriptions | MySQL Commands |
to show what databases exist on the server | show databases; |
to use a particular db | use [database]; |
show tables in a db | show tables; |
to show what fields are in a table | describe [tablename]; |
to show what fields are in a table | describe [tablename]; |
to show what columns are in a table | show columns from [tablename]; |
to show every field and record in a table | select * from [tablename]; |