Home > Q&A > body text
一个表中有多个字段,其中有个标题和描述字段,添加搜索功能,点击搜素根据填写搜索内容来匹配标题和描述两个字段的内容,有没有思路的?
怪我咯2017-04-10 18:05:29
select * from tab where col1 like "%xxxx%" OR col2 like "%xxxx%";
select * from tab where col1||col2 like "%xxxx%";