首页 > 开发 > 综合 > 正文

如何取得一个表的所有字段名用逗号分割

2024-07-21 02:10:33
字体:
来源:转载
供稿:网友

自从 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;

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表