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:
parent
3cffa4d5d6
commit
5e47590165
File diff suppressed because it is too large
Load Diff
1244
contrib/drivers/mysql/mysql_z_unit_model_where_test.go
Normal file
1244
contrib/drivers/mysql/mysql_z_unit_model_where_test.go
Normal file
File diff suppressed because it is too large
Load Diff
@ -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)
|
||||
}
|
||||
|
@ -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))
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user