mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-09 21:58:25 -06:00
9 lines
241 B
SQL
9 lines
241 B
SQL
-- name: ExecutionsServicePaginateExecutionsCount :one
|
|
SELECT COUNT(*) FROM executions;
|
|
|
|
-- name: ExecutionsServicePaginateExecutions :many
|
|
SELECT *
|
|
FROM executions
|
|
ORDER BY started_at DESC
|
|
LIMIT sqlc.arg('limit') OFFSET sqlc.arg('offset');
|