Files
pgbackweb/internal/service/executions/paginate_executions.sql
2024-07-21 19:28:18 -06:00

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');