gpt4 book ai didi

mysql - order/group by 子句中使用的列是否在 select 子句中是强制性的?

转载 作者:行者123 更新时间:2023-11-29 01:56:17 26 4
gpt4 key购买 nike

Oracle 数据库允许以下查询:

select col1 from table order by col2;

select count(col1) from table group by col2;

看来 order/group by 子句中的列不需要在 select 子句中。然而,tutorialspoint: SQL - ORDER BY Clause否则告诉我。那么以上只是Oracle特有的吗?

最佳答案

教程完全错误。

order by 可以包含查询对象中的任何列,无论它们是否在选择列表中。

group by 则相反。选择列表中的任何非聚合列都必须包含在 group by 中。

关于mysql - order/group by 子句中使用的列是否在 select 子句中是强制性的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27976643/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com