Added Lower and Upper

This commit is contained in:
Gerhard Gruber 2021-11-18 09:25:27 +01:00
parent 221f8963db
commit 9e23996e16

View File

@ -323,6 +323,14 @@ func (e *expr) Min() string {
return "MIN(" + e.expr + ")"
}
func (e *expr) Lower() string {
return "LOWER(" + e.expr + ")"
}
func (e *expr) Upper() string {
return "UPPER(" + e.expr + ")"
}
func (e *expr) Count() string {
return "COUNT(" + e.expr + ")"
}