sqlite fts参照の問題

sqlite fts参照の問題

sqliteツールでこれを行うことができます。

sqlite> select caption  from notes_fts where notes_fts MATCH '"perl install"';

しかし、Linuxシェルではそうではありません。つまり、失敗します。

user@host:~$ sqlite3 sqldb  "select caption  from notes_fts where notes_fts MATCH '"it perl install  "';"

私は成功せずに他のバージョンの参照を試しました"

ベストアンサー1

試してみてください:

sqlite3 sqldb "select caption from notes_fts where notes_fts MATCH '\"perl install\"';"

おすすめ記事