查詢存儲進程中特定字符的辦法。本站提示廣大學習愛好者:(查詢存儲進程中特定字符的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是查詢存儲進程中特定字符的辦法正文
把xx調換成詳細字符,如“深圳”,sql語句以下:
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 '%××%')