We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 528ec3f commit d989cacCopy full SHA for d989cac
1 file changed
examples/config/sqlite/query.sql
@@ -6,9 +6,7 @@ WHERE name = ? LIMIT 1;
6
SELECT *
7
FROM authors
8
ORDER BY name
9
-LIMIT
10
- sqlc.arg('limit')
11
- OFFSET sqlc.arg('offset');
+LIMIT sqlc.arg('limit') OFFSET sqlc.arg('offset');
12
13
-- name: CreateAuthor :exec
14
INSERT INTO authors (id, name, bio) VALUES (?, ?, ?);
0 commit comments