不支持的表达式
本主题介绍实体 SQL 不支持的 SQL transact-sql 表达式。 有关详细信息,请参阅实体 SQL 与 SQL 的不同之处。
限定谓词
Transact-SQL 允许以下形式的构造:
sal > all (select salary from employees)
sal > any (select salary from employees)
但实体 SQL 不支持此类构造。 在实体 SQL 中的等效表达式可以写为如下形式:
not exists(select 0 from employees as e where sal <= e.salary)
exists(select 0 from employees as e where sal > e.salary)
* 运算符
在 SELECT 子句中,Transact-SQL 支持使用 * 运算符来指示应提取所有列。实体 SQL 不支持此项。