Mysql常用命令

MySQL常用命令使用方法

1、数据库的创建

create database 数据库名 [其他选项]

2、插入数据

insert into 表名[(列名1,列名2、列名3......)]  values (值1,值2,值3....)

3、查询表中数据

select  列名称  from 表名称 [查询条件]

4、更新表中数据

update 表名称 set 列名称 = 新值 where 更新条件

例: update students set tel = default where id = 5

5、删除表中数据

delete from 表名称 where 删除条件

6、添加列

alter table 表名 add 列名 列数据名称 

7、删除列

alter table 表名 drop 列名称

8、修改列

alter table 表名 change 列名称 列新名成 新数据类型

9、重命名表

alter table 表名 rename 新表名

10、删除整张表

drop table 表名

11、删除整个数据库

drop datebase 数据库名

你可能感兴趣的:(Mysql常用命令)