目前有一些数据输入不正确,我基本上需要运行一个模式来更新当前记录并插入一个新记录(如果可能,在一个语句中)。表是这样设置的:
cityID int(10)
stateID smallint(5)
orderEnterpriseID int(10)
isDefault tinyint(3)
locationType tinying(2)
现在,每条记录的 locationType 都为 0,我需要将其更新为 5:
更新
table
集
table
。locationType
= 5 在哪里table
。locationType
= 0 和table
。orderFromEnterprise
= 0;
但我还需要使用重复数据创建另一条记录并将 locationType 设置为 6。我在处理其中一些 SQL 语句时遇到问题,非常感谢任何帮助!!!!