假设我有下表:
employee (id, name, surname, salary);
问题是:我可以使用未出现在 select 子句中的属性对选择进行分组吗?
例如:
select count (*)
from employee
where salary > 40000
group by id
我知道在这种情况下该group by
子句是无用的,但这只是一个例子。它是否正确?
假设我有下表:
employee (id, name, surname, salary);
问题是:我可以使用未出现在 select 子句中的属性对选择进行分组吗?
例如:
select count (*)
from employee
where salary > 40000
group by id
我知道在这种情况下该group by
子句是无用的,但这只是一个例子。它是否正确?