Requires Free Membership to View
create table "ATE"."DUMMY_TABLE"
( dummycol1 numeric(10),
dummycol2 varchar(4),
dummycol3 date
);
select count(*)
from all_tab_columns
where owner = 'ATE'
and table_name = 'DUMMY_TABLE';
Here is the result of the query.
COUNT(*)
----------
3
This was first published in November 2003

Join the conversationComment
Share
Comments
Results
Contribute to the conversation