gpt4 book ai didi

sql - *= 在 SQL 的 WHERE 子句中是什么意思?

转载 作者:行者123 更新时间:2023-12-04 14:51:27 29 4
gpt4 key购买 nike

有人问我以下查询的输出。

Select      *    
from TableA t1, TableB t2
where t1.Id *= t2.Id

任何人都可以解释我,如果存在这种类型的任何查询,如果存在,那么它是如何工作的。因为我从未见过这种类型的查询 谢谢。
更新:

此外,当我在 SQL Server 中运行此查询时,我得到了这个;
The query uses non-ANSI outer join operators ("*=" or "=*"). 
To run this query without modification, please set the compatibility level
for current database to 80, using the SET COMPATIBILITY_LEVEL option
of ALTER DATABASE.
It is strongly recommended to rewrite the query using ANSI outer join
operators (LEFT OUTER JOIN, RIGHT OUTER JOIN).
In the future versions of SQL Server, non-ANSI join operators will
not be supported even in backward-compatibility modes.

最佳答案

WHERE 中使用星号是 non-ANSI 表的旧 OUTER JOIN 兼容语法,因此不应再使用。

这是 link

关于sql - *= 在 SQL 的 WHERE 子句中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17439701/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com