如何取得一个表的所有字段名用逗号分割
程序员文章站
2022-03-27 08:47:57
自从 oracle 9i 开始,就可以通过sys_connect_by_path 函数实现将从父节点到当前行内容以“path”或者层次元素列表的形式显示出来。
取得一个表...
自从 oracle 9i 开始,就可以通过sys_connect_by_path 函数实现将从父节点到当前
行内容以“path”或者层次元素列表的形式显示出来。
取得一个表的所有字段名,用逗号分割。
select max(substr(sys_connect_by_path(column_name, ','),2)) col from (
select column_name,column_id from user_tab_columns where table_name='&表名')
start with column_id=1
connect by column_id=rownum;