萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> 數據庫綜合 >> SQL語句(四) 數據刪除和更新的方法

SQL語句(四) 數據刪除和更新的方法

這篇文章主要介紹了SQL語句(四) 數據刪除和更新的方法,需要的朋友可以參考下。

1.刪除

1)刪除記錄

Delete from 表名 where id ='xx'

2)刪除所有數據,並回歸初始化標識字段。

Truncate table 表名

3)delete與truncate區別

a. truncate是能使種子回到初始值

b. truncate不能加條件

c. truncate不能涉及觸發器

d. truncate性能要比delete高得多

2.更新

1)基礎的update

update 表名

set [列名]='值'

where [列名] ='值'

2)和replace一起使用

--19歲以上名字中的'星'特換成'★'。

update 表名

set name = replace(name,'星','★')

where age > 19

以上就是精品為大家提供的關於SQL語句(四) 數據刪除和更新的相關內容,希望能夠幫助到大家。

copyright © 萬盛學電腦網 all rights reserved