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\"';"
답변2
시도 해봐:
sqlite3 sqldb "select caption from notes_fts where notes_fts MATCH 'perl install';"