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
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。