I have a create table tab1
CREATE TABLE tab1(
tabid number(10),
tabname varchar2(10),
tabtype varchar2(10),
tabstatus varchar2(10),
tabaddress varchar2(10)
);
I have tired to select column header using the following code:
SELECT *
FROM myschema.COLUMNS
WHERE TABLE_NAME = 'tab1';
I want to create a view using columns headers.