这个查询错在什么地方,请大家帮我看一下?
我想删除表A中的所有纪录中的字段dwdm等于111111的纪录,我写的语句在下面,但是运行时出现这种情况:
语句如下:
delete 表A
where dwdm in ( 111111)
错误提示:
[SQL Server]Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression.
请问一下,该如何解决这个问题