以下のクエリの出力を私に尋ねる人がいます。
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.