hiling_go/db/queries/images.sql

6 lines
121 B
MySQL
Raw Permalink Normal View History

2023-09-19 21:49:48 +07:00
-- name: GetCountImageByLocation :one
SELECT
COUNT(id)
FROM images
WHERE image_type = 'locations'
AND image_of = $1;