摘要: 用到的表参考https://www.cnblogs.com/july23333/p/11763375.html where子句使用正则表达式用关键字REGEXP 1、匹配基本字符 eg1: select prod_name from products where prod_name regexp ' 阅读全文
posted @ 2019-10-24 16:48 贾力 阅读(2138) 评论(0) 推荐(0) 编辑
摘要: 一、单一条件:select 列 from 表 where 条件 eg: select prod_name,price from products where price>50 这里的比较条件包括: 注意: 列类型为串类型时,值要加引号; 具有NULL值的行在匹配过滤和不匹配过滤都不会返回,要根据需要 阅读全文
posted @ 2019-10-24 11:51 贾力 阅读(337) 评论(0) 推荐(0) 编辑