表的结构包括表的字段列名和列的数据类型。谢谢!

解决方案 »

  1.   

    select * from user_tables t where t.tname = ''
      

  2.   

    select * from user_tables t where t.tname = '' -- fill in the table
      

  3.   

    现在我的机器上没有Oracle环境,有些字段名我也记不住了,你变通一下以上的SQL语句并用Select ~ into ~ 将所需要结果赋值到一Varchar2型变量里去吧
      

  4.   

    我可以通过你给的sql语句查找到表名称,但是具体的字段名称和字段数据类型如何查询?
      

  5.   

    你查看表结构,在sqlplus中desc table_name 就行了。
      

  6.   

    如果要求用sql语句查看,可以用:select * from user_tab_columns where table_name='XXX'