编辑:
我有两个由 GUID 链接的表表 1 和表 2,我想在表 2 中搜索任何不在表 1 中的 GUID 并插入它们
我正在尝试使用 insert into select from where 语句,如下所示:
insert into WebCatalog.Published.DemoTracking (RCompanyLink, Purchased, DemoDate)
Select RC.Link, Purchased = 0, DemoDate = GETDATE()
from WebCatalog.Published.RCompany RC
where RC.Link != WebCatalog.Published.DemoTracking.RCompanyLink and RC.DemoLicense = 1
我在存储过程中不断收到 Invalid Object Name 错误,并且多部分标识符无法绑定到
WebCatalog.Published.DemoTracking.RCompanyLink
当我尝试自己执行它时出错。
我的陈述格式不正确吗?