MSSQLCE:子查询返回解析错误
我已将 ID 列 (personID) 添加到表 (personList) 中,而不是另一个字段: personPin
现在我需要填写空的外国字段另一个表 (personAttendances) 的关键字段 (seenPersonID)
UPDATE personAttendances
SET seenPersonID =
(SELECT personID FROM personList WHERE (personAttendances.personPin = personPin))
为什么 SQL 引擎会说解析查询时出错?或者如何填写其他表上的字段?
I've added an ID column (personID) into a table (personList) instead of another field: personPin
Now I need to fill empty foreign key field (seenPersonID) of another table (personAttendances)
UPDATE personAttendances
SET seenPersonID =
(SELECT personID FROM personList WHERE (personAttendances.personPin = personPin))
Why does SQL engine say there is an error parsing the query? Or how can I fill the field on other table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要类似的东西
You need something like