Oracle
 sql >> Database >  >> RDS >> Oracle

Oracle legge i nomi delle colonne dall'istruzione select

Io sceglierei:

select 'select ' || LISTAGG(column_name , ',') within group (order by column_id) || ' from T1' 
  from user_tab_columns 
  where table_name = 'T1';

per ottenere una query dal database. Per ottenere colonne con tipi da riempire mappa puoi usare solo:

select column_name , data_type
      from user_tab_columns 
      where table_name = 'T1';