更新列基于SELECT,参数来自UPDATE

时间:2012-02-03 21:24:46

标签: sql-server-2008 sql-update sql

我想做这样的事情。

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

对不起标题,我不知道这叫什么。你能帮我解决这个问题吗?

1 个答案:

答案 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