創建數據庫
create database abc;
顯示數據庫
show databases;
使用數據庫
use 數據庫名;
直接打開數據庫
mysql -h localhost -u root -p123456 -d 數據庫名
顯示表
show tables;
desc 表名;
show columns from 表名;
describe 表名;
show create table 表名;
use information_schema
select * from columns where table_name='表名';
