如何从SQL Server中的SELECT更新?

时间:2010-02-25 14:36:53

标签: sql sql-server tsql select

SQL Server 中,可以insert使用SELECT语句进入表格:

INSERT INTO Table (col1, col2, col3)
SELECT col1, col2, col3 
FROM other_table 
WHERE sql = 'cool'

是否也可以通过SELECT 更新?我有一个包含值的临时表,并希望使用这些值更新另一个表。也许是这样的:

UPDATE Table SET col1, col2
SELECT col1, col2 
FROM other_table 
WHERE sql = 'cool'
WHERE Table.id = other_table.id

35 个答案:

答案 0 :(得分:4901)

UPDATE
    Table_A
SET
    Table_A.col1 = Table_B.col1,
    Table_A.col2 = Table_B.col2
FROM
    Some_Table AS Table_A
    INNER JOIN Other_Table AS Table_B
        ON Table_A.id = Table_B.id
WHERE
    Table_A.col3 = 'cool'

答案 1 :(得分:718)

在SQL Server 2008(或更高版本)中,使用MERGE

MERGE INTO YourTable T
   USING other_table S 
      ON T.id = S.id
         AND S.tsql = 'cool'
WHEN MATCHED THEN
   UPDATE 
      SET col1 = S.col1, 
          col2 = S.col2;

可替换地:

MERGE INTO YourTable T
   USING (
          SELECT id, col1, col2 
            FROM other_table 
           WHERE tsql = 'cool'
         ) S
      ON T.id = S.id
WHEN MATCHED THEN
   UPDATE 
      SET col1 = S.col1, 
          col2 = S.col2;

答案 2 :(得分:582)

UPDATE table 
SET Col1 = i.Col1, 
    Col2 = i.Col2 
FROM (
    SELECT ID, Col1, Col2 
    FROM other_table) i
WHERE 
    i.ID = table.ID

答案 3 :(得分:266)

我将Robin's excellent answer修改为以下内容:

UPDATE Table
SET Table.col1 = other_table.col1,
 Table.col2 = other_table.col2
FROM
    Table
INNER JOIN other_table ON Table.id = other_table.id
WHERE
    Table.col1 != other_table.col1
OR Table.col2 != other_table.col2
OR (
    other_table.col1 IS NOT NULL
    AND Table.col1 IS NULL
)
OR (
    other_table.col2 IS NOT NULL
    AND Table.col2 IS NULL
)

如果没有WHERE子句,你甚至会影响不需要受影响的行,这可能(可能)导致索引重新计算或者实际上不应该触发的触发器。

答案 4 :(得分:193)

单程

UPDATE t 
SET t.col1 = o.col1, 
    t.col2 = o.col2
FROM 
    other_table o 
  JOIN 
    t ON t.id = o.id
WHERE 
    o.sql = 'cool'

答案 5 :(得分:151)

另一种未提及的可能性是将SELECT语句本身放入CTE然后更新CTE。

;WITH CTE
     AS (SELECT T1.Col1,
                T2.Col1 AS _Col1,
                T1.Col2,
                T2.Col2 AS _Col2
         FROM   T1
                JOIN T2
                  ON T1.id = T2.id
         /*Where clause added to exclude rows that are the same in both tables
           Handles NULL values correctly*/
         WHERE EXISTS(SELECT T1.Col1,
                             T1.Col2
                       EXCEPT
                       SELECT T2.Col1,
                              T2.Col2))
UPDATE CTE
SET    Col1 = _Col1,
       Col2 = _Col2

这样做的好处是,可以很容易地首先运行SELECT语句来检查结果的完整性,但如果它们在源代码中被命名为相同,则它确实要求您按照上面对列进行别名。目标表。

这也与其他四个答案中显示的专有UPDATE ... FROM语法具有相同的限制。如果源表位于一对多连接的多方面,那么在Update中将使用哪个可能的匹配连接记录是不确定的(MERGE通过提高避免的问题如果尝试多次更新同一行,则会出错。

答案 6 :(得分:106)

对于记录(和其他人一样搜索),你可以在MySQL中这样做:

UPDATE first_table, second_table
SET first_table.color = second_table.color
WHERE first_table.id = second_table.foreign_id

答案 7 :(得分:84)

使用别名:

UPDATE t
   SET t.col1 = o.col1
  FROM table1 AS t
         INNER JOIN 
       table2 AS o 
         ON t.id = o.id

答案 8 :(得分:64)

这样做的简单方法是:

UPDATE
    table_to_update,
    table_info
SET
    table_to_update.col1 = table_info.col1,
    table_to_update.col2 = table_info.col2

WHERE
    table_to_update.ID = table_info.ID

答案 9 :(得分:53)

这可能是执行更新的一个利基理由(例如,主要用于过程),或者对其他人来说可能是显而易见的,但是还应该说明您可以在不使用join的情况下执行update-select语句(如果你正在更新的表没有公共字段。)

update
    Table
set
    Table.example = a.value
from
    TableExample a
where
    Table.field = *key value* -- finds the row in Table 
    AND a.field = *key value* -- finds the row in TableExample a

答案 10 :(得分:51)

这是另一种有用的语法:

UPDATE suppliers
SET supplier_name = (SELECT customers.name
                     FROM customers
                     WHERE customers.customer_id = suppliers.supplier_id)
WHERE EXISTS (SELECT customers.name
              FROM customers
              WHERE customers.customer_id = suppliers.supplier_id);

使用“WHERE EXIST”检查它是否为空。

答案 11 :(得分:48)

我只是添加了这个,这样你就可以看到一种快速编写方式,这样你就可以在更新之前检查更新内容。

UPDATE Table 
SET  Table.col1 = other_table.col1,
     Table.col2 = other_table.col2 
--select Table.col1, other_table.col,Table.col2,other_table.col2, *   
FROM     Table 
INNER JOIN     other_table 
    ON     Table.id = other_table.id 

答案 12 :(得分:46)

如果使用MySQL而不是SQL Server,则语法为:

UPDATE Table1
INNER JOIN Table2
ON Table1.id = Table2.id
SET Table1.col1 = Table2.col1,
    Table1.col2 = Table2.col2

答案 13 :(得分:46)

在SQL数据库中使用INNER JOIN从SELECT更新

由于这篇文章的回复太多,而且投票率最高,我想我也会在这里提出我的建议。虽然这个问题非常有趣,但我在许多论坛网站上都看到过并使用 INNER JOIN 制作了截图解决方案。

首先,我创建了一个以 schoolold 命名的表,并插入了几个与其列名相关的记录并执行它。

然后我执行了 SELECT 命令来查看插入的记录。

然后我创建了一个名为 schoolnew 的新表,并在上面执行了类似的操作。

然后,为了查看插入的记录,我执行SELECT命令。

现在,我想在第三和第四行进行一些更改,为了完成此操作,我使用 INNER JOIN 执行 UPDATE 命令。

要查看更改,我执行 SELECT 命令。

通过使用INNER JOIN和UPDATE语句,您可以看到表 schoolold 的第三和第四条记录如何轻松替换为表 schoolnew

答案 14 :(得分:37)

如果你想加入桌子(这不会经常发生):

update t1                    -- just reference table alias here
set t1.somevalue = t2.somevalue
from table1 t1               -- these rows will be the targets
inner join table1 t2         -- these rows will be used as source
on ..................        -- the join clause is whatever suits you

答案 15 :(得分:37)

以下示例使用派生表(FROM子句后面的SELECT语句)返回旧值和新值以进行进一步更新:

UPDATE x
SET    x.col1 = x.newCol1,
       x.col2 = x.newCol2
FROM   (SELECT t.col1,
               t2.col1 AS newCol1,
               t.col2,
               t2.col2 AS newCol2
        FROM   [table] t
               JOIN other_table t2
                 ON t.ID = t2.ID) x

答案 16 :(得分:34)

通过CTE进行更新比其他答案更具可读性:

;WITH cte
     AS (SELECT col1,col2,id
         FROM   other_table
         WHERE  sql = 'cool')
UPDATE A
SET    A.col1 = B.col1,
       A.col2 = B.col2
FROM   table A
       INNER JOIN cte B
               ON A.id = B.id

答案 17 :(得分:33)

如果您使用的是SQL Server,则可以在不指定连接的情况下从另一个表更新一个表,只需将where子句中的两个链接起来即可。这使得SQL查询更加简单:

UPDATE Table1
SET Table1.col1 = Table2.col1,
    Table1.col2 = Table2.col2
FROM
    Table2
WHERE
    Table1.id = Table2.id

答案 18 :(得分:20)

另一种方法是使用派生表:

UPDATE t
SET t.col1 = a.col1
    ,t.col2 = a.col2
FROM (
SELECT id, col1, col2 FROM @tbl2) a
INNER JOIN @tbl1 t ON t.id = a.id

示例数据

DECLARE @tbl1 TABLE (id INT, col1 VARCHAR(10), col2 VARCHAR(10))
DECLARE @tbl2 TABLE (id INT, col1 VARCHAR(10), col2 VARCHAR(10))

INSERT @tbl1 SELECT 1, 'a', 'b' UNION SELECT 2, 'b', 'c'

INSERT @tbl2 SELECT 1, '1', '2' UNION SELECT 2, '3', '4'

UPDATE t
SET t.col1 = a.col1
    ,t.col2 = a.col2
FROM (
SELECT id, col1, col2 FROM @tbl2) a
INNER JOIN @tbl1 t ON t.id = a.id

SELECT * FROM @tbl1
SELECT * FROM @tbl2

答案 19 :(得分:20)

UPDATE TQ
SET TQ.IsProcessed = 1, TQ.TextName = 'bla bla bla'
FROM TableQueue TQ
INNER JOIN TableComment TC ON TC.ID = TQ.TCID
WHERE TQ.IsProcessed = 0

要确保更新所需内容,请先选择

SELECT TQ.IsProcessed, 1 AS NewValue1, TQ.TextName, 'bla bla bla' AS NewValue2
FROM TableQueue TQ
INNER JOIN TableComment TC ON TC.ID = TQ.TCID
WHERE TQ.IsProcessed = 0

答案 20 :(得分:18)

使用:

drop table uno
drop table dos

create table uno
(
    uid int,
    col1 char(1),
    col2 char(2)
)
create table dos
(
    did int,
    col1 char(1),
    col2 char(2),
    [sql] char(4)
)
insert into uno(uid) values (1)
insert into uno(uid) values (2)
insert into dos values (1,'a','b',null)
insert into dos values (2,'c','d','cool')

select * from uno 
select * from dos

或者:

update uno set col1 = (select col1 from dos where uid = did and [sql]='cool'), 
col2 = (select col2 from dos where uid = did and [sql]='cool')

OR:

update uno set col1=d.col1,col2=d.col2 from uno 
inner join dos d on uid=did where [sql]='cool'

select * from uno 
select * from dos

如果两个表中的ID列名相同,则只需将表名放在要更新的表之前,并使用所选表的别名,即:

update uno set col1 = (select col1 from dos d where uno.[id] = d.[id] and [sql]='cool'),
col2  = (select col2 from dos d where uno.[id] = d.[id] and [sql]='cool')

答案 21 :(得分:18)

甚至还有一个更短的方法,您可能会感到惊讶:

样本数据集:

CREATE TABLE #SOURCE ([ID] INT, [Desc] VARCHAR(10));
CREATE TABLE #DEST   ([ID] INT, [Desc] VARCHAR(10));

INSERT INTO #SOURCE VALUES(1,'Desc_1'), (2, 'Desc_2'), (3, 'Desc_3');
INSERT INTO #DEST   VALUES(1,'Desc_4'), (2, 'Desc_5'), (3, 'Desc_6');

代码:

UPDATE #DEST
SET #DEST.[Desc] = #SOURCE.[Desc]
FROM #SOURCE
WHERE #DEST.[ID] = #SOURCE.[ID];

答案 22 :(得分:16)

在此巩固所有不同的方法。

  1. 选择更新
  2. 使用公用表格表达式进行更新
  3. 合并
  4. 示例表结构如下所示,将从Product_BAK更新为Product表。

    产品

    CREATE TABLE [dbo].[Product](
        [Id] [int] IDENTITY(1, 1) NOT NULL,
        [Name] [nvarchar](100) NOT NULL,
        [Description] [nvarchar](100) NULL
    ) ON [PRIMARY]
    

    Product_BAK

        CREATE TABLE [dbo].[Product_BAK](
            [Id] [int] IDENTITY(1, 1) NOT NULL,
            [Name] [nvarchar](100) NOT NULL,
            [Description] [nvarchar](100) NULL
        ) ON [PRIMARY]
    

    1。选择更新

        update P1
        set Name = P2.Name
        from Product P1
        inner join Product_Bak P2 on p1.id = P2.id
        where p1.id = 2
    

    2。使用公用表表达式

    进行更新
        ; With CTE as
        (
            select id, name from Product_Bak where id = 2
        )
        update P
        set Name = P2.name
        from  product P  inner join CTE P2 on P.id = P2.id
        where P2.id = 2
    

    3。合并

        Merge into product P1
        using Product_Bak P2 on P1.id = P2.id
    
        when matched then
        update set p1.[description] = p2.[description], p1.name = P2.Name;
    

    在这个Merge语句中,如果没有在目标中找到匹配的记录,我们可以进行插入,但是在源代码中存在并且请找到语法:

        Merge into product P1
        using Product_Bak P2 on P1.id = P2.id;
    
        when matched then
        update set p1.[description] = p2.[description], p1.name = P2.Name;
    
        WHEN NOT MATCHED THEN
        insert (name, description)
        values(p2.name, P2.description);
    

答案 23 :(得分:14)

在接受的答案中,在:

之后
SET
Table_A.col1 = Table_B.col1,
Table_A.col2 = Table_B.col2

我想补充一下:

OUTPUT deleted.*, inserted.*

我通常做的是将所有内容放在滚动支持的事务中并使用"OUTPUT":这样我就会看到即将发生的一切。当我对所看到的内容感到满意时,我会将ROLLBACK更改为COMMIT

我通常需要记录我所做的事情,因此在运行roll-backed查询时我使用"results to Text"选项并保存脚本和OUTPUT的结果。 (当然,如果我改变太多行,这是不切实际的)

答案 24 :(得分:13)

从select语句更新的另一种方法:

UPDATE A
SET A.col = A.col,B.col1 = B.col1
FROM  first_Table AS A
INNER JOIN second_Table AS B  ON A.id = B.id WHERE A.col2 = 'cool'

答案 25 :(得分:12)

UPDATE table AS a
INNER JOIN table2 AS b
ON a.col1 = b.col1
INNER JOIN ... AS ...
ON ... = ...
SET ...
WHERE ...

答案 26 :(得分:12)

以下解决方案适用于MySQL数据库:

UPDATE table1 a , table2 b 
SET a.columname = 'some value' 
WHERE b.columnname IS NULL ;

答案 27 :(得分:4)

与其他人一样,

需要指出的是, MySQL MariaDB 使用不同的语法。它还支持非常方便的USING语法。 INNER JOIN也是JOIN的同义词。因此,原始问题的查询最好在MySQL中实现:

UPDATE
    Some_Table AS Table_A

JOIN
    Other_Table AS Table_B USING(id)

SET
    Table_A.col1 = Table_B.col1,
    Table_A.col2 = Table_B.col2

WHERE
    Table_A.col3 = 'cool'

在其他答案中,我没有看到针对原始询问的解决方案,因此,我只花了两美分。 (在PHP 7.4.0 MariaDB 10.4.10上测试)

答案 28 :(得分:2)

选项1:使用内部联接:

UPDATE
    A
SET
    A.col1 = B.col1,
    A.col2 = B.col2
FROM
    Some_Table AS A
    INNER JOIN Other_Table AS B
        ON A.id = B.id
WHERE
    A.col3 = 'cool'

选项2:与公司相关的子查询

UPDATE table 
SET Col1 = B.Col1, 
    Col2 = B.Col2 
FROM (
    SELECT ID, Col1, Col2 
    FROM other_table) B
WHERE 
    B.ID = table.ID

答案 29 :(得分:1)

您可以在SQL Server中使用它进行更新

UPDATE
    T1
SET
   T1.col1 = T2.col1,
   T1.col2 = T2.col2
FROM
   Table1 AS T1
INNER JOIN Table2 AS T2
    ON T1.id = T2.id
WHERE
    T1.col3 = 'cool'

答案 30 :(得分:1)

declare @tblStudent table (id int,name varchar(300))
declare @tblMarks table (std_id int,std_name varchar(300),subject varchar(50),marks int)

insert into @tblStudent Values (1,'Abdul')
insert into @tblStudent Values(2,'Rahim')

insert into @tblMarks Values(1,'','Math',50)
insert into @tblMarks Values(1,'','History',40)
insert into @tblMarks Values(2,'','Math',30)
insert into @tblMarks Values(2,'','history',80)


select * from @tblMarks

update m
set m.std_name=s.name
 from @tblMarks as m
left join @tblStudent as s on s.id=m.std_id

select * from @tblMarks

答案 31 :(得分:1)

UPDATE table1
SET column1 = (SELECT expression1
               FROM table2
               WHERE conditions)
[WHERE conditions];

在SQL Server中用另一个表中的数据更新一个表时UPDATE语句的语法

答案 32 :(得分:1)

我以前使用过INSERT SELECT,对于那些想使用新东西的人,我会把这个工作原理类似但更短的解决方案:

UPDATE table1                                     //table that's going to be updated
LEFT JOIN                                         //type of join
table2 AS tb2                                     //second table and rename for easy
ON
tb2.filedToMatchTables = table1.fieldToMatchTables//fileds to connect both tables
SET   
fieldFromTable1 = tb2.fieldFromTable2;            //field to be updated on table1

field1FromTable1 = tb2.field1FromTable2,          //This is in the case you need to
field1FromTable1 = tb2.field1FromTable2,          //update more than one field
field1FromTable1 = tb2.field1FromTable2;          //remember to put ; at the end

答案 33 :(得分:0)

相同的解决方案可以用稍微不同的方式编写,因为我只想在写完两个表后才设置列。在mysql中工作。

xsl:import/xsl:include

答案 34 :(得分:0)

像这样;但是您必须确保更新表和更新后的表相同。

UPDATE Table SET col1, col2
FROM table
inner join other_table Table.id = other_table.id
WHERE sql = 'cool'