Answers for "Write a query to display the column name and data type of the table employee."

SQL
0

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';
Posted by: Guest on January-19-2021

Code answers related to "Write a query to display the column name and data type of the table employee."

Code answers related to "SQL"

Browse Popular Code Answers by Language