MySQL常用命令

1、显示所有数据库:

  show databases;

 

2、选择数据库

  use “数据库”

3、 查看当前数据库所有表

  show tables;

4、查看其中表所有数据

  select * from 表

5、查看表结构

  desc 表

6、插入添加数据

  insert into 表(name1,name2......)values(values1,values2.....);

7、删除表数据

  delete from 表 where 条件

8、更新数据

  update 表 set a=1 where a=2

9, 增加字段

  alter table employees add time int(11) default 2020;

10、删除字段

   alter table employees drop time;

11、查看索引;

  show index from jobs;

12、添加索引

  alter table 表 add index 索引名(字段);

  

  

MySQL常用命令

上一篇:[极客大挑战 2019]LoveSQL


下一篇:oracle用户授权