溫馨提示×

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

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

mysql基本操作之增刪改查

發(fā)布時(shí)間:2020-07-11 05:37:55 來(lái)源:網(wǎng)絡(luò) 閱讀:480 作者:yue者長(zhǎng)歌 欄目:MySQL數(shù)據(jù)庫(kù)

查詢

查詢所有列

select * from 表名;
例:
select * from classes;

查詢指定列

可以使用as為列或表指定別名

select 列1,列2,... from 表名;
例:
select id,name from classes;

增加

說(shuō)明:主鍵列是自動(dòng)增長(zhǎng),但是在全列插入時(shí)需要占位,通常使用0,插入成功后以實(shí)際數(shù)據(jù)為準(zhǔn)

全列插入:值的順序與表中字段的順序?qū)?yīng)

insert into 表名 values(...)
例:
insert into students values(0,’郭靖‘,1,'蒙古','2016-1-2');

部分列插入:值的順序與給出的列順序?qū)?yīng)

insert into 表名(列1,...) values(值1,...)
例:
insert into students(name,hometown,birthday) values('黃蓉','桃花島','2016-3-2');

上面的語(yǔ)句一次可以向表中插入一行數(shù)據(jù),還可以一次性插入多行數(shù)據(jù),這樣可以減少與數(shù)據(jù)庫(kù)的通信

全列多行插入:值的順序與給出的列順序?qū)?yīng)

insert into 表名 values(...),(...)...;
例:
insert into classes values(0,'python1'),(0,'python2');
insert into 表名(列1,...) values(值1,...),(值1,...)...;
例:
insert into students(name) values('楊康'),('楊過(guò)'),('小龍女');

修改

update 表名 set 列1=值1,列2=值2... where 條件
例:
update students gender=0,hometown='古墓' where id=5;

刪除

delete from 表名 where 條件
例:
delete from students where id=5;

邏輯刪除,本質(zhì)就是修改操作

update students set isdelete=1 where id=1;


向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