摘要:
转自:http://www.cnblogs.com/hongten/p/hongten_python_keywords.html python3.3.2中的关键字如下: The following identifiers are used as reserved words, or keywords 阅读全文
摘要:
当你的表X中有A,B两列,数据如下 A B a 1 a 2 a 3 b 1 b 2 b 3 想让数据以 a|1|2|3 , b|1|2|3 格式显示可使用listagg() 1、使用listagg() + group by select A,B,listagg(B,'|') within GROUP 阅读全文