/
Arsinenko
/
CompClubAPI_Go
Обзор
Документация
Войти
/
Arsinenko
/
CompClubAPI_Go
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
sqlc/queries/clubs.sql
17 строк
432 B
Arsinenko
Club handler
06 окт 2025, 16:53
06 окт 2025, 16:53
e0961e8
Код
Авторство
О чём код?
-- name: GetClubs :many select * from clubs; -- name: GetClub :one select * from clubs where clubs.name = $1; -- name: CreateClub :one insert into clubs (name, address, phone, working_hours) values ($1, $2, $3, $4) returning *; -- name: UpdateClub :one update clubs set address = $2, phone = $3, working_hours = $4 where name = $1 returning *; -- name: CloseClub :one update clubs set is_alive = $2 where name = $1 returning *;