博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
转载 MySQL创建表的语句 示例
阅读量:5235 次
发布时间:2019-06-14

本文共 1527 字,大约阅读时间需要 5 分钟。

show variables like 'character_set_client';#查询字符集show databases;#列出所有的服务器上的数据库altercreate database if not exists test;#创建一个数据库drop database fk;#删除数据库show tables from test;#显示一个数据库中的表use test;create table tb_dept(    Id int primary key auto_increment,#部门编号 整形 主键 自增长    Name varchar(18),#部门名称    description varchar(100)#描述);show tables from test;desc tb_dept;#查看表信息show create table tb_dept;use test;#员工表create table tb_emp(id int primary key auto_increment,#auto_increment只是MySQL特有的Name varchar(18),sex varchar(2),age int,address varchar(200),email varchar(100));drop table tb_dept;#修改列类型#注意:不是任何情况下都可以去修改的,#只有当字段只包含空值时才可以修改。alter table tb_emp modify sex  varchar(4);#增加列alter table tb_emp add tel varchar(12);#删除列alter table tb_emp drop tel;alter table tb_emp drop column tel;#列改名alter table tb_emp change Name emp_Name varchar(18);#更改表名alter table tb_emp rename emp;rename table emp to tb_emp;insert into dept_emp (Name,sex,age,address,email)values('','','','','');#约束#是在表上强制执行地数据校验规则,主要用于保证数据库地完整性/*not null unique 唯一键tb_depttb_deptprimary key foreign key 外键check 检查*/create table tb_emp(id int primary key auto_increment,Name varchar(18),sex varchar(2) default'男' check(sex='男'or sex='女'),#表级写法check 在mysql中不起作用age int,address varchar(200),email varchar(100) unique,dept_id int,#references tb_dept(id) #表级写法外键不起作用constraint foreign key fk_emp(dept_id) references tb_dept(id));#创建表之后在添加alter table tb_emp add constraint foreign key fk_emp(dept_id) references tb_dept(id);

 

转载于:https://www.cnblogs.com/mike-mei/p/7821386.html

你可能感兴趣的文章
JSON跨域解决方案收集
查看>>
SSH框架整合总结
查看>>
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
SpringBoot-thymeleaf
查看>>