天天看點

oracle查詢一列彙總,【學習筆記】Oracle資料篩選 查找oracle所有表中的特定列中的某些資料...

天萃荷淨

開發DBA反映,根據需求需要查找Oracle資料庫中所有表中特定的列中指定的關鍵詞的資料,和資料内容和數量

找出資料庫中所有表表中REMARK列中含有WN、wind、wlr中表名和數量

declare

i number:=0;

begin

for c1 in

(select table_name from user_tab_columns where column_name='REMARK')

loop

EXECUTE IMMEDIATE 'select count(*) from '|| c1.table_name

||' where UPPER(REMARK) LIKE ''%WN%'' or UPPER(remark) like ''%WIND%'' or UPPER(remark) like ''%WLR%'''

into i;

if i>0 then

dbms_output.put_line(c1.table_name||'------'||i);

end if;

end loop;

end;

--------------------------------------ORACLE-DBA----------------------------------------

最權威、專業的Oracle案例資源彙總之【學習筆記】Oracle資料篩選 查找oracle所有表中的特定列中的某些資料