多年前,写
where exists (Select * from some_table where some_condition)
去年,我注意到许多t-sql脚本切换为使用数字1而不是星号
where exists (Select 1 from some_table where some_condition)
就这样,我看到了这个Oracle示例
WHERE EXISTS (SELECT NULL FROM ...
这是Oracle的常见模式吗?以及使用此类功能的性能参数。
2
SO对此进行了讨论。 stackoverflow.com/questions/424212/...
—
利Riffel