1.update語句
資料表中的資料在實際應用中,出於某些原因,需要對資料進行修改,則可以採用update語句來實現.
語法結構:update<表名> set 列名1=值1,列名2=值2,......
[where 條件表示式]
如下表中,想要把王五的位址修改為西安
我們可以這樣寫:
update infos set stuadress = '西安'
where stuid='002'
執行結果為:
還有一種比較特殊的
/*******************************
將所有位址不為空的記錄的stuadress改為西安
***************************/
update infos set stuadress ='西安'
where stuadressis not null
執行結果為:
2.delete語句
刪除資料
例如:我要刪除下表中的所有年齡小於17而且性別為女的學員
條件刪除,刪除所有年齡小於17的性別為『女』的學員
*********************************************/
delete from infos
where age <17 and gender ='女'
執行結果如下:
如果想要刪除表中所有的資料,那麼直接去掉wehere子句就ok了.
資料庫常用的sql語句
1.給某個表新增主鍵 alter table t check wk add constraint acount no primary key acount no 2.刪除某個表的主鍵 alter table t temp wk drop constraint acount no 3.重新命名某個字段...
資料庫常用的sql語句
1.給某個表新增主鍵 alter table t check wk add constraint acount no primary key acount no 2.刪除某個表的主鍵 alter table t temp wk drop constraint acount no 3.重新命名某個字段...
資料庫管理常用sql語句
一 creating a database 1 以系統管理員使用者登入。sqlplus as sysdba 2 啟動資料庫導nomount狀態。sql startup nomount 3 執行建立資料庫語句。sql create database invrep controlfile reuse m...