私は行きます:
select 'select ' || LISTAGG(column_name , ',') within group (order by column_id) || ' from T1'
from user_tab_columns
where table_name = 'T1';
データベースからクエリを取得します。マップを埋めるタイプの列を取得するには、次のコマンドを使用できます:
select column_name , data_type
from user_tab_columns
where table_name = 'T1';