7 lines
173 B
SQL
7 lines
173 B
SQL
-- name: GetAllBranchLocations :many
|
|
SELECT *
|
|
FROM branch_locations
|
|
WHERE (
|
|
value ILIKE '%' || sqlc.narg('query') || '%'
|
|
OR sqlc.narg('query') IS NULL
|
|
); |