如何使用SQL计算表中的列数?
我正在使用Oracle 11g
请帮忙。
select count(*) from user_tab_columns where table_name=’MYTABLE’ –use upper case
可以使用低位函数代替大写。例如:从user_tab_columns中选择count(*),其中lower(table_name)=’table_name’;