1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

feat(database/gdb): add WhereExists/WhereNotExists (#4015)

This commit is contained in:
John Guo 2024-12-09 09:24:48 +08:00 committed by GitHub
parent 3cffa4d5d6
commit 5e47590165
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1264 additions and 1029 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -159,3 +159,13 @@ func (b *WhereBuilder) WhereNotNull(columns ...string) *WhereBuilder {
}
return builder
}
// WhereExists builds `EXISTS (subQuery)` statement.
func (b *WhereBuilder) WhereExists(subQuery *Model) *WhereBuilder {
return b.Wheref(`EXISTS (?)`, subQuery)
}
// WhereNotExists builds `NOT EXISTS (subQuery)` statement.
func (b *WhereBuilder) WhereNotExists(subQuery *Model) *WhereBuilder {
return b.Wheref(`NOT EXISTS (?)`, subQuery)
}

View File

@ -117,3 +117,13 @@ func (m *Model) WhereNotIn(column string, in interface{}) *Model {
func (m *Model) WhereNotNull(columns ...string) *Model {
return m.callWhereBuilder(m.whereBuilder.WhereNotNull(columns...))
}
// WhereExists builds `EXISTS (subQuery)` statement.
func (m *Model) WhereExists(subQuery *Model) *Model {
return m.callWhereBuilder(m.whereBuilder.WhereExists(subQuery))
}
// WhereNotExists builds `NOT EXISTS (subQuery)` statement.
func (m *Model) WhereNotExists(subQuery *Model) *Model {
return m.callWhereBuilder(m.whereBuilder.WhereNotExists(subQuery))
}