题解 | #字符函数正则匹配1#
字符函数正则匹配1
https://www.nowcoder.com/practice/c2ab33676cc84e5593c6d337fd2b685f
输出 comment 以 '是' 或 '求' 开头的的 id
select id, comment
from
comment_detail
where comment like '是%' or comment like '求%'
order by id
到底是开头还是包含??? 这钱花的真无语
#论程序员的副业#