DDL:数据定义语言 一、库的管理 创建、修改、删除 二、表的管理 创建、修改、删除 创建:create 修改:alter 删除:drop 【注】delete、update是对表中数据的操作,属于数据操作语言DML
语法: create database 库名; create database if not exit 库名;
创建库 Books
create database Book; #若所创建的数据库已存在,则报错,可以使用以下语句 create database if not exists Book;#若所创建的数据库存在,则不创建,若不存在,则创建数据库
#rename database 库名 to 新库名;#修改库名,该方式已废弃 更改库的字符集 alter database 库名 character set 字符集;
alter database books character set gbk;
drop database 库名; drop database if exists 库名;
drop database Book;#若不存在库,则报错 drop database if exists Book;
语法: create table 表名( 字段名 字段类型[(长度)] [字段的约束], 字段名 字段类型[(长度)] [字段的约束], ...... 字段名 字段类型[(长度)] [字段的约束] );
案例1:创建表Book
create table book( id int,#书的编号 bname varchar(20)# 图书名 20为字符的最大长度 price double,# 价格 authorId int, #作者编号 publishDate datetime #出版日期 );
创建表author
create table author( id int, au_name varchar(20), nation varchar(10) );
表的修改核心语法 alter table 表名 add|drop|modify|change column 列名 [列的类型] [约束] 1、修改列名 alter table 表名 change column 旧列名 新列名 类型; alter table book change column publishdate pubDate datetime;#column 可以省略 2、修改列的类型或约束 alter table 表名 modify column 需修改的列名 修改后的类型 alter table book modify column pubdate timestamp; 3、添加新列 alter table 表名 add column 新添加的列名 类型; alter table author add column annual double; 4、删除列 alter table 表名 drop column 列名; alter table author drop column annual; 5、修改表名 alter table 旧表名 rename to 新表名; alter table author rename to book_author;
drop table 表名; drop table if exists 表名;#if exists和if not exists 只在库或表的删除或创建的时候可以使用,列则不行
通用写法
drop database if exists 旧库名; create database 新库名; drop database if exists 旧表名; create database 新表名();
1、仅仅复制表的结构 create table 复制的表 like 被复制地表; #仅仅只能复制表地结构,但内部地数据不能复制 2、复制表的结构和数据 (1)、复制全部的数据 create table 复制的表 select * from 被复制的表; #将表的结构和数据复制到一个新的表中 create table copy select * from author; (2)、复制部分的数据 create table 复制的表 select 列1,列2... from 被复制的表 where 筛选条件; #只复制筛选出来的部分 create table copy select id,au_name from author where nation='中国'; (3)、仅仅复制某些字段(不需要数据)#此时的like已不适合使用 create table 复制的表 select 列1,列2... from 被复制的表 where 0 create table copy select id,au_name from author where 0;#0代表的是false,1代表true
name | Null? | type |
---|---|---|
id | int(7) | |
name | varchar(25) |
create table dept1( id int(7), name varchar(25) );
create table dept2 select * from myemployees.departments; #库名.表名 实现跨库复制表的结构
name | Null? | type |
---|---|---|
id | int(7) | |
First_name | varchar(25) | |
Last_name | varchar(25) | |
Dept_id | int(7) |
create table dept1( id int(7), first_name varchar(25), last_name varchar(25), dept_id int(7) );
alter table emp5 modify column last_name vachar(50);
create table employees2 like myemployees.employees;
drop table if exists emp5;
alter table employees2 rename to emp5;
alter table dept add column test_column int; alter table emp5 add column test_column int;
alter table emp5 drop column dept_id;