标签:匹配 follow res http 通配 oralce 一个 rom pre
首发:http://www.arppinging.com/wordpress/?p=104在Oracle中,%表示匹配所有,使用通配符前要使用like
SQL> select * from student where sname like ‘Z%‘;
SNO SNAME SAGE
---------- ------------------------------ ----------
1 ZhangSan 21
4 ZhaoYun 24
SQL>
下划线‘_‘在Oracle中,表示任意匹配一个字符
SQL> select * from student where sname like ‘ZhaoYu_‘;
SNO SNAME SAGE
---------- ------------------------------ ----------
4 ZhaoYun 24
标签:匹配 follow res http 通配 oralce 一个 rom pre
原文地址:http://blog.51cto.com/xiaowangzai/2298980