您好,登錄后才能下訂單哦!
查詢
查詢所有列
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;
免責(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)容。