一个表中有多个字段,其中有个标题和描述字段,添加搜索功能,点击搜素根据填写搜索内容来匹配标题和描述两个字段的内容,有没有思路的?
走同样的路,发现不同的人生
select * from tab where col1 like "%xxxx%" OR col2 like "%xxxx%";
select * from tab where col1||col2 like "%xxxx%";
select * from tab where col1 like "%xxxx%" OR col2 like "%xxxx%";