常用sql命令 插入 更新 刪除

2021-10-01 13:35:07 字數 614 閱讀 9580

insert into用於向**中插入新的行。

insert into 表名稱 values (值1, 值2,…)

指定所要插入資料的列:

insert into table_name (列1, 列2,…) values (值1, 值2,…)

update用於修改表中的資料。

update 表名稱 set 列名稱 = 新值 where 列名稱 = 某值

delete用於刪除表中的行

delete from 表名稱 where 列名稱 = 值

清除所有資料

delete from table_name

刪除表drop table 表名稱

新增列alter table table_name

add column_name datatype

刪除列alter table table_name

drop column column_name

修改列的資料型別

alter table table_name

alter column column_name datatype

SQL 插入 更新 刪除記錄語句

無需指定要插入資料的列名,只需提供被插入的值即可 insert into table name values value1,value2,value3,需要制定列名和插入的值 insert into table name column1,column2,column3,values value1,v...

SQL學習(2) 插入,更新和刪除

一 資料插入insert 1.簡單插入 insert into aa values a b null 有幾個值就必須寫幾個值 insert into aa id,name,code values a b null 可以插入特定列的值,使用這個語法要求,這些被忽略的特定列是可以為null,或者有預設值...

SQL經典例項(四)插入 更新和刪除

定義表的某些列的預設值 create table d id integer default 0 所有的資料庫都支援使用default關鍵字來顯式地為某一列指定預設值 insert into d values default oracle 8i資料庫及更早的版本不支援default關鍵字,因此沒辦法為...