我想做这样的事情。
UPDATE tbl_states AS ts
SET tbl_states.country_id = (SELECT tbl_countries.country_id
FROM tbl_states ts1
JOIN tbl_countries
ON tbl_countries.country_id_id =
ts1.country_id
WHERE ts1.country_id_id = ts.country_id_id)
我想根据插入新数据库的新主键,将来自不同数据库的旧 country_id
更新为新 country_id
。在这里给你一个想法是架构。
CREATE TABLE [dbo].[tbl_countries](
[country_id] [int] IDENTITY(1,1) NOT NULL,
[country_id_id] [int] NULL,
[country_name] [varchar](50) NULL)
country_id_id
是下一个表格中引用的旧 country_id
我将向您展示tbl_states
CREATE TABLE [dbo].[tbl_states](
[state_id] [int] IDENTITY(1,1) NOT NULL,
[state_name] [varchar](50) NULL,
[country_id] [int] NULL,
[state_abbr] [char](3) NOT NULL)
我想使用以下select语句将此表country_id
的{{1}}列更新为上表的主列,以获取主键。
tbl_states
对不起标题,我不知道这叫什么。你能帮我解决这个问题吗?
答案 0 :(得分:3)
UPDATE s
SET country_id = c.country_id
FROM tbl_states s
INNER JOIN tbl_countries c
ON s.country_id = c.country_id_id