新學習的mysql,終於認真寫一次了

show variables like 'character_set_client';#查詢字符集
 2 show databases;#列出全部的服務器上的數據庫alter
 3 create database if not exists test;#建立一個數據庫
 4 drop database fk;#刪除數據庫
 5 show tables from test;#顯示一個數據庫中的表
 6 use test;
 7 
 8 create table tb_dept(
 9     Id int primary key auto_increment,#部門編號 整形 主鍵 自增加
10     Name varchar(18),#部門名稱
11     description varchar(100)#描述
12 );
13 
14 show tables from test;
15 
16 desc tb_dept;#查看錶信息
17 
18 show create table tb_dept;
19 
20 use test;
21 #員工表
22 create table tb_emp(
23 id int primary key auto_increment,#auto_increment只是MySQL特有的
24 Name varchar(18),
25 sex varchar(2),
26 age int,
27 address varchar(200),
28 email varchar(100)
29 );
30 
31 drop table tb_dept;
32 #修改列類型
33 #注意:不是任何狀況下均可以去修改的,
34 #只有當字段只包含空值時才能夠修改。
35 alter table tb_emp modify sex  varchar(4);
36 #增長列
37 alter table tb_emp add tel varchar(12);
38 #刪除列
39 alter table tb_emp drop tel;
40 alter table tb_emp drop column tel;
41 #列更名
42 alter table tb_emp change Name emp_Name varchar(18);
43 #更改表名
44 alter table tb_emp rename emp;
45 rename table emp to tb_emp;
46 
47 insert into dept_emp (Name,sex,age,address,email)values('','','','','');
48 
49 #約束
50 #是在表上強制執行地數據校驗規則,主要用於保證數據庫地完整性
51 /*
52 not null 
53 unique 惟一鍵tb_depttb_dept
54 primary key 
55 foreign key 外鍵
56 check 檢查
57 */
58 
59 create table tb_emp(
60 id int primary key auto_increment,
61 Name varchar(18),
62 sex varchar(2) default'男' check(sex='男'or sex='女'),#表級寫法check 在mysql中不起做用
63 age int,
64 address varchar(200),
65 email varchar(100) unique,
66 dept_id int,#references tb_dept(id) #表級寫法外鍵不起做用
67 constraint foreign key fk_emp(dept_id) references tb_dept(id)
68 );
69 
70 #建立表以後在添加
71 alter table tb_emp add constraint foreign key fk_emp(dept_id) references tb_dept(id);
相關文章
相關標籤/搜索