select count(*)
from user_tab_columns
where table_name='MYTABLE' --use upper case
Alih-alih huruf besar, Anda dapat menggunakan fungsi yang lebih rendah.Contoh: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
Alih-alih huruf besar, Anda dapat menggunakan fungsi yang lebih rendah.Contoh:select count(*) from user_tab_columns where lower(table_name)='table_name';