Firebird 有用的list函数

原文:https://www.cnblogs.com/jonney-wang/p/9353332.html

 

语法: LIST ([ALL | DISTINCT] expression [, separator])

示例: select list(u.code, ';') from m_user u

结果:查询到的多行,以分隔符分开显示。默认是ALL

 

示例: select list(DISTINCT u.code, ';') from m_user u  

结果:去年重复值后用;分隔

 

说明:Firebird专有功能

posted @ 2022-04-04 11:16  81  阅读(64)  评论(0编辑  收藏  举报