You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
比如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 的画 高亮又会有问题
希望有具体的方案和例子 谢谢
The text was updated successfully, but these errors were encountered:
比如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 的画 高亮又会有问题
希望有具体的方案和例子 谢谢
The text was updated successfully, but these errors were encountered: