Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MIN() 聚合函数用于评估 'CHAR' 或 'VARCHAR2' 等数据类型的逻辑是什么?
Min( VarcharType )给定相关列的排序顺序,将返回结果集中该列的最低字符串值。
Min( VarcharType )
MIN() 也返回最短的字符串(就长度而言),但它是按字母顺序排列的。
例如-有两种水果:1.苹果,2.猕猴桃。输出:Apple(因为 A 在 K 之前,尽管 Kiwi 比 Apple 短)。