DDL:数据定义语言
1.1 MySQL管理数据库
- 查看所有数据库:show databases;
- 创建数据库:create database 库名;
- 查看数据库创建数据的语句:show create database 库名;
- 删除数据库:drop database 库名;
1.2 表的管理
- 查看所有表:show tables;
- 创建表(student(id,name,age)):create table student(id int, name varchar(30), age int);
- 查看表结构:1.以sql格式返回:show create table 表名;2.以表格格式返回:desc 表名;
- 删除表:drop table 表名;
- 插入数据:insert into 表名 (列名)values (值);
- 修改数据:update 表名 set 列名 = 值 where 条件;
- 删除数据:1.删除表的所有数据 :delete from 表名 where 条件 / truncate[table] 表名
- 查询数据:1.查询所有列:select * from 表名;2.查询指定列名:as 可以省略;3.去掉重复数据:distinct;