hiling_go/db/queries/images.sql
2024-05-22 11:26:15 +07:00

6 lines
121 B
SQL
Executable File

-- name: GetCountImageByLocation :one
SELECT
COUNT(id)
FROM images
WHERE image_type = 'locations'
AND image_of = $1;