Write a query to display the column name and data type of the table employee. code example
Example: Write a query to display the column name and data type of the table employee.
select column_name, data_type
from all_tab_columns
where table_name = 'EMPLOYEES';