如何在 SQL Server 中使用 JOIN 执行 UPDATE 语句?
我需要使用其“父”表中的数据更新 SQL Server 中的此表,如下所示:
表:sale
id (int)
udid (int)
assid (int)
表:ud
id (int)
assid (int)
sale.assid
包含更新 ud.assid 的正确值。
什么查询会执行此操作? 我正在考虑加入
,但我不确定是否可行。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(19)
语法严格取决于您使用的 SQL DBMS。 以下是在 ANSI/ISO(也适用于任何 SQL DBMS)、MySQL、SQL Server 和 Oracle 中执行此操作的一些方法。 请注意,我建议的 ANSI/ISO 方法通常比其他两种方法慢得多,但如果您使用的是 MySQL、SQL Server 或 Oracle 之外的 SQL DBMS,那么它可能是唯一的方法(例如如果您的 SQL DBMS 不支持 MERGE):
ANSI/ISO:
MySQL:
SQL Server:
PostgreSQL:
请注意,目标表不得在
FROM
子句中重复Postgres。 主要问题:如何在 PostgreSQL 中进行更新+连接?Oracle:
SQLite:
SQLite 3.33 添加了对类似于 PostgreSQL 语法的
UPDATE
+FROM
语法的支持:主要问题:在 SQLite 中使用 Join 进行更新
Syntax strictly depends on which SQL DBMS you're using. Here are some ways to do it in ANSI/ISO (aka should work on any SQL DBMS), MySQL, SQL Server, and Oracle. Be advised that my suggested ANSI/ISO method will typically be much slower than the other two methods, but if you're using a SQL DBMS other than MySQL, SQL Server, or Oracle, then it may be the only way to go (e.g. if your SQL DBMS doesn't support
MERGE
):ANSI/ISO:
MySQL:
SQL Server:
PostgreSQL:
Note that the target table must not be repeated in the
FROM
clause for Postgres. Main question: How to do an update + join in PostgreSQL?Oracle:
SQLite:
SQLite 3.33 added support for an
UPDATE
+FROM
syntax analogous to the PostgreSQL one:Main question: Update with Join in SQLite
这应该适用于 SQL Server:
This should work in SQL Server:
PostgreSQL
PostgreSQL
标准的 SQL 方法是
在 SQL Server 上,您可以使用联接
A standard SQL approach would be
On SQL Server you can use a join
PostgreSQL:
PostgreSQL:
使用JOIN连接多个表简化了更新查询。
注意 -first_table、second_table、third_table 和 some_column(如 123456)是演示表名称、列名称和 ID。 将它们替换为有效名称。
Simplified update query using JOIN-ing multiple tables.
Note - first_table, second_table, third_table and some_column like 123456 are demo table names, column names and ids. Replace them with the valid names.
SQL 并不真正可移植的另一个例子。
对于 MySQL 来说是:
有关更多信息,请阅读多个表更新:
http://dev.mysql.com/doc/refman/5.0/en /update.html
Another example why SQL isn't really portable.
For MySQL it would be:
For more info read multiple table update:
http://dev.mysql.com/doc/refman/5.0/en/update.html
Teradata 的 Aster 提供了另一种实现这一目标的有趣方法:
Teradata's Aster offers another interesting way how to achieve the goal:
我认为顶帖中的 SQL Server 适合 Sybase 因为它们都是 T -SQL,但不幸的是没有。
对于 Sybase,我发现更新需要在表本身上,而不是别名上:
I was thinking the SQL Server one in the top post would work for Sybase since they are both T-SQL, but unfortunately not.
For Sybase, I found the update needs to be on the table itself, not the alias:
MySQL
如果忘记 where 子句并将所有条件放在 ON 表达式中,您将获得最佳性能。
我认为这是因为查询首先必须连接表,然后在其上运行 where 子句,因此如果您可以减少连接所需的内容,那么这就是获取结果/执行更新的快速方法。
示例
场景
您有一个用户表。 他们可以使用
用户名
、电子邮件
或电话号码
登录。 这些帐户可以是活动的 (1) 或非活动的 (0)。 该表有 50000 行然后您就可以一次性禁用一张用户表(列入黑名单),因为您发现他们都做了坏事。
运行一个脚本来检查
blacklist_users
表中的用户并在users
表中禁用它们。然而,这个
blacklist_users
表只有一列,其中用户名
、电子邮件
和帐号
全部混合在一起。blacklist_users
表还有一个“has_run”指示器,运行时需要将其设置为 1 (true),以便在以后的查询中可以跳过它。因此,如果这里有一个 WHERE 子句,在内部,结果将返回到联接中,然后针对该数据集查询 WHERE 子句。 相反,我们可以将所有 where 子句条件移至连接中,并在内部完全删除第二个查询。
因此,这是避免不必要地查找
users
表的最佳查询...查询
推理
如果我们必须仅连接 OR 条件,则基本上需要检查每一行 4 次(1对于
电子邮件
,1对于电话号码
,1对于用户名
,1对于is_active
)来查看是否应该加入,并可能返回更多行。 然而,通过给它更多的条件,它可以“跳过”我们不更新的每一行。额外的好处
是它更具可读性。 所有条件都位于一个位置,而要更新的行位于另一位置。
我希望这一切都是有意义的。
MySQL
You'll get the best performance if you forget the where clause and place all conditions in the ON expression.
I think this is because the query first has to join the tables and then runs the where clause on that, so if you can reduce what is required to join then that's the fasted way to get the results/do the update.
Example
Scenario
You have a table of users. They can log in using their
username
oremail
orphone_number
. These accounts can be active (1) or inactive (0). This table has 50000 rowsYou then have a table of users to disable (blacklist) at one go because you find out they've all done something bad.
A script runs that checks for users in the
blacklist_users
table and disables them in theusers
table.This
blacklist_users
table however, only has one column withusernames
,emails
andaccount numbers
all mixed together.The
blacklist_users
table also has a "has_run" indicator which needs to be set to 1 (true) when it has been run so it can be skipped in future queries.So if you have a WHERE clause here, internally, the results are getting brought back in the join and then the WHERE clause is being queried against that dataset. Instead, we can move all the where clause conditions into the join, and internally, remove the second query completely.
Therefore, this is the most optimal query to avoid needless lookups of the
users
table...Query
Reasoning
If we had to join on just the OR conditions it would essentially need to check each row 4 times (1 for
email
, 1 forphone_number
, 1 forusername
, 1 foris_active
) to see if it should join, and potentially return a lot more rows. However, by giving it more conditions it can "skip" every row we're not updating.Bonus
It's more readable. All the conditions are in one place and the rows to update are in another place.
I hope all that makes sense.
最简单的方法是使用通用表表达式 (CTE) SQL Server 2005 中引入:
The simplest way is to use the Common Table Expression (CTE) introduced in SQL Server 2005:
以下带有 FROM 关键字的语句用于通过联接更新多行:
The following statement with the FROM keyword is used to update multiple rows with a join:
在 Microsoft Access 中:
And in Microsoft Access:
试试这个。 我认为这对你有用。
Try this one. I think this will work for you.
对于 SQLite,使用 RowID 属性进行更新:
For SQLite use the RowID property to make the update:
对于使用 PrestaShop 用户wiki/MySQL" rel="nofollow noreferrer">MySQL 5.7:
这是一个示例,但要点正如 Eric 在 如何在 SQL Server 中使用 JOIN 执行 UPDATE 语句?。
您需要在首先添加一条
UPDATE
语句,其中包含要连接的所有表的完整地址,然后然后添加SET< /代码> 声明。
For PrestaShop users who use MySQL 5.7:
This was an example, but the point is as Eric said in How can I do an UPDATE statement with JOIN in SQL Server?.
You need to add an
UPDATE
statement at first with the full address of all tables to join with, and then add theSET
statement.要在 SQL Server 中使用 JOIN 执行 UPDATE 语句,可以将 JOIN 语法与 UPDATE 语句结合使用。 下面是一个示例查询,应根据 sale 表中的相应值更新 ud 表:
在此查询中,正在更新 ud 表,并根据匹配的 id 和 udid 列在 ud 和 sale 表之间执行 JOIN , 分别。 SET 子句指定要更新的列 ud.assid,并为其分配 sale.assid 列中的值。
dbForge Studio 的 SQL 编辑器使您能够执行查询并熟练管理数据库。
To perform an UPDATE statement with a JOIN in SQL Server, you can use the JOIN syntax in combination with the UPDATE statement. Here's an example query that should update the ud table based on the corresponding values from the sale table:
In this query, the ud table is being updated, and the JOIN is performed between the ud and sale tables based on the matching id and udid columns, respectively. The SET clause specifies the column to be updated, ud.assid, and assigns it the value from the sale.assid column.
dbForge Studio'se SQL editor empowers you to execute your queries and proficiently manage your databases.
我遇到了类似的情况,我需要从 postgresql 中的 Corporate_subscriptions 中获取并更新 user_id 。 以下查询适用于我的情况:
I had a similar situation where I needed to pick up and update user_id in orders from corporate_subscriptions in postgresql. The following query worked in my case: