forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.sql.go
More file actions
84 lines (71 loc) · 1.75 KB
/
query.sql.go
File metadata and controls
84 lines (71 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
// 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
}