真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

操作MySQL表相關(guān)要義總結(jié)

下面講講關(guān)于操作MySQL表相關(guān)要義,文字的奧妙在于貼近主題相關(guān)。所以,閑話就不談了,我們直接看下文吧,相信看完操作MySQL表相關(guān)要義這篇文章你一定會(huì)有所受益。

創(chuàng)新互聯(lián)公司主要從事成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)芒康,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220

使用編輯器編輯指令
edit
創(chuàng)建表
create table 表名(
字段1,類型【寬度】約束條件)
==在同一張表中,字段名是不能相同
==寬度和約束條件可選
==字段名和類型是必須的
查看表
show tables;
desc haha;查看表結(jié)構(gòu)
show create table haha;
show table status like ‘haha’ \G
修改表:
alter 修改表名稱 ,修改字段名稱  修改字段數(shù)據(jù)類型  修改字段的修飾符
insert  插入數(shù)據(jù)
delete 刪除數(shù)據(jù)
update 更新數(shù)據(jù)
修改表名稱
rename table haha to xixi;
alter table hh rename xixi;
添加新字段
alter table t1 add math int(10);
alter table t1 add (chinese int(10)),english int(10));
修改字段數(shù)據(jù)庫(kù)類型,修飾符 alter只能改數(shù)據(jù)庫(kù)類型不能改名
alter table t1 modify chinese int(5) not null;
修改名稱,數(shù)據(jù)類型,修飾符
alter table t1 change chinese china int(6);
first after
alter table t1 change english en int(6) after id;
alter table t1 modify en int(6) first;
刪除字段
alter table t1 drop en;
插入數(shù)據(jù)(添加記錄)
字符串必須引號(hào)引起來(lái)    
mysql> insert into t1(id,name,math,china) values(1,"wing",80,90);
mysql> insert into t1(id,name,math,china) values(2,"king",70,100),(3,"tom",50,70);
mysql> insert into t1  values(4,"xiaosan",50,100);
mysql> insert into t1(id,math) values(5,70);
mysql> insert into t1 set id=6,math=65;
更新記錄  
mysql> update t1 set name="lili" where id=5;
刪除記錄
mysql> delete from  t1 where id=6;
mysql> delete from  t1;    //刪除所有記錄
表復(fù)制:key不會(huì)被復(fù)制: 主鍵、外鍵和索引
復(fù)制一張表
mysql> create table t10(select * from t3);
mysql> create table t10(select id,name from t3);

復(fù)制表結(jié)構(gòu)
mysql> create table t4(select * from t3 where 5=4);
mysql> create table t4(select  id,name  from t3 where 5=4);

復(fù)制記錄
mysql> insert into t3 select * from t10 where id=9;

刪除表
mysql> drop table t1;

刪除庫(kù)
mysql> drop database gnu;

對(duì)于以上操作MySQL表相關(guān)要義相關(guān)內(nèi)容,大家還有什么不明白的地方嗎?或者想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。 


分享名稱:操作MySQL表相關(guān)要義總結(jié)
本文來(lái)源:http://weahome.cn/article/ihioej.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部