मैं इसके लिए जाऊंगा:
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';