mysql 必知必會1 資料定義語言DDL

2021-10-06 22:27:48 字數 1554 閱讀 9569

123

4567

891011

1213

1415

1617

1819

2021

2223

2425

2627

2829

3031

3233

3435

3637

3839

4041

4243

4445

4647

4849

5051

# ########  資料庫相關

# 建立庫

create database 庫名 if not exists;

# 修改庫名

rename database books to 新庫名;

# 刪除庫

drop database if exists books;

# ######### 表相關

# 建立表

create table if not exists customers

(cust_id int not null auto_increment, # 自動增加

cust_name char(50) not null default gel, # 設預設值

cust_address char(50) null,

cust_city char(50) null,

cust_state char(5) null,

cust_email char(255) null,

primary key (cust_id) # 指定主鍵

) engine=innodb;

create table if not exists student

(id int not null auto_increment,

name char(50) not null,

address char(50) null,

city char(50) null,

email char(255) null,

primary key (id)

) engine=innodb;

# 更新表

# 新增一列 add

alter table customers add cust_phone char(20);

# 刪除表

drop table customers

# 修改表名

rename table customers to customers222;

# 修改列名

alter table book change column 舊名 新名 型別;

# 修改列名,約束

alter table book modify column 列名 型別;

# 刪除一列 drop

alter table customers drop column cust_phone;

mysql必知必會 mysql必知必會(四)

十四 理解子查詢 1 通過子查詢過濾 這本書在所有的章節都關連到了資料庫表,訂單資料是儲存在兩個表中,orders表儲存著 訂單號碼 顧客id和訂單日期。個人的訂單列表關連著orderitems表,訂單表沒有儲存顧客資訊,它只是儲存著顧客id,這實際的顧客資訊是儲存在customers表中。現在假設...

mysql的必知必會 mysql 必知必會 筆記

好久沒有寫了。1 show columns from table 等同於describe table顯示的是表的結構。而select from table 則顯示的是整個表中插入的資料。2 select distinct c1,c2 from table除非列不相同,否則所有行將被檢索出來,即不能對...

mysql必知必會

一周了,總想寫點什麼,有的時候進步真的很難在一周顯示出來,週三的時候,我跟我的領導說,好快啊,又週三了,不知不覺,他說是啊,現在對於他來說,有時候他過一天可能跟我過一周的感覺差不多,每天都在忙,時間過的特別快,也沒有感覺做出來點什麼,當然實際肯定是怎麼做了一些東西的,是否我以後也會如此呢?說說技術把...