下面介绍一些MySQL命令的用法:
登录MySQL:mysql -u用户名 -p密码显示所有数据库:show databases;创建数据库:create database 数据库名;删除数据库:drop database 数据库名;选择数据库:use 数据库名;显示当前选中的数据库:select database();显示所有数据表:show tables;显示数据表的结构:desc 数据表名;创建数据表:create table 数据表名 ( 字段名1 数据类型1, 字段名2 数据类型2, 字段名3 数据类型3, ... );删除数据表:drop table 数据表名;添加字段:alter table 数据表名 add 字段名 数据类型;删除字段:alter table 数据表名 drop 字段名;修改字段:alter table 数据表名 modify 字段名 数据类型;增加主键:alter table 数据表名 add primary key (字段名);删除主键:alter table 数据表名 drop primary key;增加索引:create index 索引名 on 数据表名(字段名);删除索引:drop index 索引名 on 数据表名;插入数据:insert into 数据表名(字段1,字段2,...) values (值1,值2,...);查询数据:select * from 数据表名 where 条件;修改数据:update 数据表名 set 字段名=值 where 条件;删除数据:delete from 数据表名 where 条件;