您好,登錄后才能下訂單哦!
插入數(shù)據(jù):insert into 表名(列名1,列名2.........)values (值1,值2)
如果插入多條數(shù)據(jù)則insert into 表名(列名1,列名2.........)values (值1,值2),(值1,值2)...
2. 查詢數(shù)據(jù):select * from 表名 //查詢表中所有數(shù)據(jù),其中*可以改為列名進行詳細查找
3.更新數(shù)據(jù):update 表名 set 列名=新名稱 where 更新條件
實例:
將id為1的手機號改為默認的"-": update students set tel=default where id=1;
將所有人的年齡增加1: update students set age=age+1;
將手機號為 13288097888 的姓名改為 "張三", 年齡改為 19: update students set name="張三", age=19 where tel="13288097888";
4.刪除數(shù)據(jù):delete 語句用于刪除表中的數(shù)據(jù), 基本用法為:
delete from 表名稱 where 刪除條件;
使用示例:
刪除id為2的行: delete from students where id=3;
刪除所有年齡小于21歲的數(shù)據(jù): delete from students where age<18;
刪除表中的所有數(shù)據(jù): delete from students;
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。