oracle中如何查出某个表中一共有多少列

并且最好能够显示出各列都是什么类型的

第1个回答  推荐于2016-05-27
select column_name,data_type from all_tab_columns
where owner='用户名' and table_name='表名';

用户名和表名都要大写的本回答被提问者采纳
第2个回答  2010-08-18
select * from 表
不就显示表中所有的列了吗,列的属性到字典表里查看
相似回答