在 SQL 中,除了字符串之外,MIN、MAX 和 COUNT 还可以操作哪些非数字数据类型?
我读到聚合函数 MIN、MAX 和 COUNT 对字符串和其他非数字数据类型进行操作。但需要哪些以及为什么需要它们?
谢谢
I'm reading that the aggregate functions MIN, MAX, and COUNT operate on strings plus other nonnumeric data types. But which ones, and why are they needed?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
各种时间类型应与 MIN、MAX 和 COUNT 一起使用。
事实上,COUNT 应该适用于几乎任何类型,但大对象(BLOB、CLOB 或相关类型)可能除外。
The various time types should work with MIN, MAX and COUNT.
In fact, COUNT should work with pretty much any type with the probable exception of large objects (BLOB, CLOB or related types).