I am trying to print column name along with data type but in DLL format. But no idea where to begin
Expected output :
Name varchar2(255)
Age varchar2(266)
creation date
I am using the SQL query like following below
select column_name , data_type from all_tab_cols where table_name='EMP';
The above query gives me column name and data type but how to achieve the parenthesis (
and )