欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

必须会的SQL语句(四) 数据删除和更新

程序员文章站 2023-01-03 16:35:21
1.删除   1)删除记录   delete from 表名 where id ='xx'   2)删除所有数据,并回归初始化标识字...

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