There was an error while loading. Please reload this page.
SQLite supports WHERE clause directly over the Table name to query all the columns.
CREATE VIRTUAL TABLE IF NOT EXISTS ft USING fts5(id, name, content);
SELECT name, snippet(ft, -1, "...", "...", "", 30) FROM ft WHERE ft MATCH @query
But SQLC does not work with this Query.
# package gen query.sql:77:7: column "ft" does not exist
SQLite
Go