在sql server中的where语句后使用(+)
我如何将以下 plsql 转换为 tsql。 B.STATUS(+)=1
在 tsql 中不起作用。
Select * from A,B where A.ID=B.ID(+)
WHERE B.STATUS(+)=1
这不会返回 mssql 中的行,因为它不理解 B.STATUS 是可选的
Select * from A LEFT JOIN B ON A.ID=B.ID
WHERE B.STATUS=1
How can i convert following plsql to tsql. B.STATUS(+)=1
doesnt work in tsql.
Select * from A,B where A.ID=B.ID(+)
WHERE B.STATUS(+)=1
this doesnt return rows in mssql because it doesnt understand B.STATUS is optional
Select * from A LEFT JOIN B ON A.ID=B.ID
WHERE B.STATUS=1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当条件应用于 WHERE 子句中的外表时,OUTER JOIN 会更改为 INNER JOIN。在 ON 子句中,它保持为 OUTER。
您需要将谓词推入“
OR ”
An OUTER JOIN changes to an INNER JOIN when a condition is applied to the outer table in the WHERE clause. In the ON clause, it stays as OUTER.
You need to push the predicate "in"
OR
只需将其设为 OR“(b.status = 1 OR b.status IS NULL)”
Just make it an OR "(b.status = 1 OR b.status IS NULL)"