Answers for "check data type of a column in oracle db"

SQL
1

oracle see column type

SELECT  table_name, column_name, data_type, data_length FROM all_tab_columns where table_name = 'CUSTOMER'
Posted by: Guest on August-10-2021

Code answers related to "check data type of a column in oracle db"

Code answers related to "SQL"

Browse Popular Code Answers by Language