select * from user_source t where instr(lower(t.text),'xx')>0;
select * from all_source t where t.owner<>'SYS' and instr(t.text,'××')>0;
如果是sql server数据库,可以使用如下语句:
select * from sysobjects where id in(
select id from syscomments where text like '%××%')
更多文章请关注《万象专栏》
转载请注明出处:https://www.wanxiangsucai.com/read/cv148104