#输出 comment中包含 "是",或"试",或"报名"的 id,comment列,查询返回结果按照id升序排列
select
    id,
    comment
from 
    comment_detail
where
    comment like '%是%' or comment like '%试%' or comment like '%报名%'
order by
    id;