select count(*)
from user_tab_columns
where table_name='MYTABLE' --use upper case
Namísto velkých písmen můžete použít nižší funkci. Příklad:select count(*) from user_tab_columns where lower(table_name)='table_name';
select count(*)
from user_tab_columns
where table_name='MYTABLE' --use upper case
Namísto velkých písmen můžete použít nižší funkci. Příklad:select count(*) from user_tab_columns where lower(table_name)='table_name';