sqlserver 中删除“某个表”中的一条数据的语句怎么写

2024-12-27 11:50:25
推荐回答(5个)
回答1:

delete from table t where t.列名=你要的条件

回答2:

DROP关键字

回答3:

delete from table where id = 3

delete from table where date = ''2012-01-11 10:43:13'
提示你有语法错误你是不是没写 = ,顺便看看这个字段的类型是什么,需不需要转换

回答4:

delete tabName where 列名 = 条件

回答5:

delete from 某个表 where 指定的条件。