test_table:
id f_name l_name age
-- --------- -------- ------
I am new to oracle, but if I want to select all the columns I should use
select * from test_table
however if I want to select all the columns except age I should write
select id, f_name, l_name from test_table
Is there a way I can select all the columns but disgarding a column or two?
Because in my work busninse there alot of columns and sometimes I don't need to select them all.