mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-02-24 13:15:34 +00:00
13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
|
|
BEGIN;
|
|
CREATE VIRTUAL TABLE ft USING fts3(a, b, c);
|
|
INSERT INTO ft VALUES('one', 'one', 'one');
|
|
COMMIT;
|
|
|
|
|
|
SELECT * FROM ft WHERE ft MATCH 'b:one'
|
|
|
|
|
|
SELECT quote(root) FROM ft_segdir;
|
|
|