select count(*)
from user_tab_columns
where table_name='MYTABLE' --use upper case
大文字の代わりに、小文字の関数を使用できます。例:user_tab_columnsからcount(*)を選択します。ここで、lower(table_name)='table_name';
select count(*)
from user_tab_columns
where table_name='MYTABLE' --use upper case
大文字の代わりに、小文字の関数を使用できます。例:user_tab_columnsからcount(*)を選択します。ここで、lower(table_name)='table_name';