select count(*)
from user_tab_columns
where table_name='MYTABLE' --use upper case
अपरकेस के बजाय आप लोअर फंक्शन का उपयोग कर सकते हैं। उदाहरण:user_tab_columns से काउंट (*) चुनें जहां लोअर (टेबल_नाम) ='टेबल_नाम';
select count(*)
from user_tab_columns
where table_name='MYTABLE' --use upper case
अपरकेस के बजाय आप लोअर फंक्शन का उपयोग कर सकते हैं। उदाहरण:user_tab_columns से काउंट (*) चुनें जहां लोअर (टेबल_नाम) ='टेबल_नाम';