您好,登錄后才能下訂單哦!
數(shù)據(jù)庫基本增刪改查
1、 增—添加/插入數(shù)據(jù),insert into
插入哪張表,那些列,什么值,
語句:insert into 表名(列1,列2,列3)values (值1,值2,值3);
可以不按原列的順序插入,也可以插入部分列,但是值與列要一一對應(yīng),不能混亂?。?!
一次插入多行數(shù)據(jù) :
Insert into 表名(列1,列2)values (值1,值2),(值1,值2);
2、 改—更新數(shù)據(jù)update
更新哪張表,哪些列,哪些值
語句:update 表名 set 列1=值1,列2=值2,列3=值3 where條件;
3、 查—查詢數(shù)據(jù)select
查詢表所有列:Select * from 表名;
查詢部分列:select 列1,列2 from 表名 where 條件;
4、 刪—刪除數(shù)據(jù) delete
Delete from 表名 where 條件;
修改表結(jié)構(gòu)(alter modify)
1、 修改表名
Rename table 原表名 to 新表名;
Alter table 原表名 rename to 新表名;
2、 添加列
Alter table表名 add 列名 列的定義;
3、 修改列的定義/屬性
Alter table 表名 modify 列名 新定義;
4、 修改列的順序
Alter table 表名 modify 列1 定義1 after 列2;
5、 修改列名
Alter table 表名 change 舊列名 新列名 新定義;
6、 刪除列
Alter table 表名 drop column 列名;
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。