-
Notifications
You must be signed in to change notification settings - Fork 112
是否支持列过滤呢? #139
Copy link
Copy link
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationfeatureUsed for auto generate changelogUsed for auto generate changelog
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationfeatureUsed for auto generate changelogUsed for auto generate changelog
比如readme中的例子
select rowid as id, TITLE,CONTENT, simple_highlight(t1, 0, '[', ']') as title_highlighted, simple_highlight(t1, 1, '[', ']') as content_highlighted from t1 where t1 match simple_query('周杰伦')
如果我当前表t1 的结构为 serviceId tableName title content 多个列
我现在只想针对 title content 列进行全文检索,我试过使用sqlite中的柱过滤器,没办法实现
用 where 列1 match 值1 OR 列2 match 值2 的画 高亮又会有问题
希望有具体的方案和例子 谢谢