日期:2014-05-17  浏览次数:20798 次

Oralce数据库,如何通过一个存储过程获得表的结构
表的结构包括表的字段列名和列的数据类型。谢谢!

------解决方案--------------------
select * from user_tables t where t.tname = ' ' -- fill in the table
------解决方案--------------------
如果要求用sql语句查看,可以用:select * from user_tab_columns where table_name= 'XXX '