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\"';"