溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時(shí)間:2020-06-08 11:32:52 來(lái)源:網(wǎng)絡(luò) 閱讀:263 作者:三月 欄目:MySQL數(shù)據(jù)庫(kù)

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

使用編輯器編輯指令
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è)資訊板塊。 

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI