Hi guys i need help about displaying a column name of a specific table example i have a table named account and it has account_id, first_name, last_name and stuffs like that what i need is to display the account_id, first_name, last_name and so on and not the data inside that column really need your help.. thanks 🙂
SELECT table_name, column_name, data_type, data_length
FROM USER_TAB_COLUMNS
WHERE table_name = 'mydatabase'
that’s the code i found while i was researching for answers but i don’t know how to excecute this one.. i really have no idea how would i use this to display the column name..
the result maybe: