/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/delete_join/mysql/db/query.sql.go
84 строки
2 KB
Kyle Gray
Release 1.31.1 (#4407)
22 апр 2026, 17:52
Не верифицирован
22 апр 2026, 17:52
a95e91d
Код
Авторство
О чём код?
// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.31.1 // source: query.sql package db import ( "context" ) const deleteJoin = `-- name: DeleteJoin :exec DELETE jt.*, pt.* FROM join_table as jt JOIN primary_table as pt ON jt.primary_table_id = pt.id WHERE jt.id = ? AND pt.user_id = ? ` type DeleteJoinParams struct { ID uint64 UserID uint64 } func (q *Queries) DeleteJoin(ctx context.Context, arg DeleteJoinParams) error { _, err := q.db.ExecContext(ctx, deleteJoin, arg.ID, arg.UserID) return err } const deleteJoinWithSubquery = `-- name: DeleteJoinWithSubquery :exec DELETE pt FROM primary_table pt JOIN (SELECT 1 as id) jt ON pt.id = jt.id ` func (q *Queries) DeleteJoinWithSubquery(ctx context.Context) error { _, err := q.db.ExecContext(ctx, deleteJoinWithSubquery) return err } const deleteLeftJoin = `-- name: DeleteLeftJoin :exec DELETE jt.*, pt.* FROM join_table as jt LEFT JOIN primary_table as pt ON jt.primary_table_id = pt.id WHERE jt.id = ? AND pt.user_id = ? ` type DeleteLeftJoinParams struct { ID uint64 UserID uint64 } func (q *Queries) DeleteLeftJoin(ctx context.Context, arg DeleteLeftJoinParams) error { _, err := q.db.ExecContext(ctx, deleteLeftJoin, arg.ID, arg.UserID) return err } const deleteRightJoin = `-- name: DeleteRightJoin :exec DELETE jt.*, pt.* FROM join_table as jt RIGHT JOIN primary_table as pt ON jt.primary_table_id = pt.id WHERE jt.id = ? AND pt.user_id = ? ` type DeleteRightJoinParams struct { ID uint64 UserID uint64 } func (q *Queries) DeleteRightJoin(ctx context.Context, arg DeleteRightJoinParams) error { _, err := q.db.ExecContext(ctx, deleteRightJoin, arg.ID, arg.UserID) return err }