复杂的sql更新
表 MyTable 包含 4 列。
- id、phone 列是唯一的。
- ID、电话、邮政编码决不能为空。
id - phone - salary - zipcode
1 - 61730459987 - $56052.45 - 02456
2 - 21249620709 - NULL - 10023
3 - 21200830859 - $39089.28 - 10023
...
10000 - 64600830857 - $46063.72 - 03795**
我需要根据相同邮政编码的信息,通过将 NULL 替换为 salary_estimates 来删除 NULL。
对于上面的例子,#2 行的 NULL 可以替换为 $39089.28(我们从表中可以发现,另一个具有相同邮政编码 10023 的人赚了 $39089.28,因此可以将 #2 的 NULL 更新为 $39089.28)。 因此,在运行此查询后,空单元格的数量可以减少(尽管不会达到零)。
有人可以建议针对此问题进行更新查询吗?
The table MyTable contains 4 columns.
- id, phone columns are unique.
- id, phone, zipcode are never empty.
id - phone - salary - zipcode
1 - 61730459987 - $56052.45 - 02456
2 - 21249620709 - NULL - 10023
3 - 21200830859 - $39089.28 - 10023
...
10000 - 64600830857 - $46063.72 - 03795**
I need to remove NULLs by replacing them with salary_estimates, based on information from the same zip-codes.
As for the example above, NULL at row #2 could be replaced with $39089.28 (we can find from the table that another person with the same zip-code 10023 earns $39089.28, so it's OK to update NULL for #2 with $39089.28).
So, after we run this query, the number of empty cells could be reduced (although not up to zero).
Could anybody suggest an update query for this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定它是否适用于 mysql。但在 MSSQL 中你可以这样做:
你需要检查 mysql 的等效连接情况。
参考号测试查询:
I am not sure it will work for mysql. But in MSSQL you can do like this :
You need to check equivalent join case for mysql.
Ref. Test Query :
您可以这样做:如果
salary
为空,它将替换为该邮政编码的工资。You can do like this: if
salary
is null it will replace with salary of that zipcode.