sorry , I can not understand. please say it in detail. thanks a lot.

解决方案 »

  1.   

    SELECT * FROM USER_TAB_COLUMNS WHERE COLUMN_NAME LIKE 'YOUR COLUMN';
      

  2.   

    select table_name from user_tab_columns where column_name = 列名
      

  3.   

    注意一点,USER_TAB_COLUMNS 视图中的COLUMN_NAME 字段的值都是大写字母
      

  4.   

    select tablename from user_tab_columns where column_name = '列名' and owner = '用户'
      

  5.   

    Thank you all of you