Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 SQL Developer 中,如何找到哪个表的列与指定的搜索查询匹配?
Select table_name, column_name from user_tab_columns where column_name like '%'|| '&columnPattern' || '%'
User_tab_columns为您自己的桌子。否则dba_tab_columns或all_tab_columns
User_tab_columns
dba_tab_columns
all_tab_columns