0

我是第一次使用 sql。我得到了一个巨大的 .sql 文件,它实际上是一个转储文件。文件中丢失了具有错误字段的条目 - id、价格、描述等。

我该怎么做。我可以使用 as/w 轻松找到缺少条目的位置吗?

4

2 回答 2

0

寻找

select * from Table where Field is null

重复您的字段或组合:

select * from table 
 where ((Field1 is null) or (Field2 is null) or (Field3 is null))
于 2013-09-13T11:02:44.710 回答
0

我已经评论了这一行

select * 
from table_name 
where ids is null or price is null or description is null 

从数据库中选择所有空记录。现在,无需使用程序,您就可以进行简单的盲更新,这意味着您无法通过此方法更新具有不同值的所有记录

update table_name 
set ids='value1', price='value2', description='value3' 
where ids is null or price is null or description is null 

只有在您不关心数据的重要性时才能这样做。

于 2013-09-18T13:58:33.743 回答