MySQL中查询哪些存储代码中写了IP地址
Posted wzy0623
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL中查询哪些存储代码中写了IP地址相关的知识,希望对你有一定的参考价值。
使用正则表达式实现:
select * from information_schema.routines
where routine_definition regexp '^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.)3(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$';
select * from information_schema.triggers
where action_statement regexp '^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.)3(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$';
select * from information_schema.events
where event_definition regexp '^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.)3(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$';
以上是关于MySQL中查询哪些存储代码中写了IP地址的主要内容,如果未能解决你的问题,请参考以下文章