jet/mysql/functions.go

304 lines
11 KiB
Go
Raw Normal View History

package mysql
2019-08-03 14:10:47 +02:00
2020-06-27 18:48:19 +02:00
import "github.com/go-jet/jet/v2/internal/jet"
2019-08-03 14:10:47 +02:00
// This functions can be used, instead of its method counterparts, to have a better indentation of a complex condition
// in the Go code and in the generated SQL.
var (
// AND function adds AND operator between expressions.
AND = jet.AND
// OR function adds OR operator between expressions.
OR = jet.OR
)
// ROW function is used to create a tuple value that consists of a set of expressions or column values.
2024-10-17 14:12:21 +02:00
func ROW(expressions ...Expression) RowExpression {
return jet.ROW(Dialect, expressions...)
}
2019-08-03 14:10:47 +02:00
2019-08-14 10:11:43 +02:00
// ------------------ Mathematical functions ---------------//
2019-08-14 10:11:43 +02:00
// ABSf calculates absolute value from float expression
2019-08-03 14:10:47 +02:00
var ABSf = jet.ABSf
2019-08-14 10:11:43 +02:00
// ABSi calculates absolute value from int expression
2019-08-03 14:10:47 +02:00
var ABSi = jet.ABSi
2019-08-14 10:11:43 +02:00
// POW calculates power of base with exponent
var POW = jet.POW
// POWER calculates power of base with exponent
2019-08-03 14:10:47 +02:00
var POWER = jet.POWER
2019-08-14 10:11:43 +02:00
// SQRT calculates square root of numeric expression
2019-08-03 14:10:47 +02:00
var SQRT = jet.SQRT
2019-08-14 10:11:43 +02:00
// CBRT calculates cube root of numeric expression
func CBRT(number jet.NumericExpression) jet.FloatExpression {
return POWER(number, Float(1.0).DIV(Float(3.0)))
}
2019-08-14 10:11:43 +02:00
// CEIL calculates ceil of float expression
2019-08-03 14:10:47 +02:00
var CEIL = jet.CEIL
2019-08-14 10:11:43 +02:00
// FLOOR calculates floor of float expression
2019-08-03 14:10:47 +02:00
var FLOOR = jet.FLOOR
2019-08-14 10:11:43 +02:00
// ROUND calculates round of a float expressions with optional precision
2019-08-03 14:10:47 +02:00
var ROUND = jet.ROUND
2019-08-14 10:11:43 +02:00
// SIGN returns sign of float expression
2019-08-03 14:10:47 +02:00
var SIGN = jet.SIGN
2019-08-14 10:11:43 +02:00
// TRUNC calculates trunc of float expression with precision
var TRUNC = TRUNCATE
2019-08-14 10:11:43 +02:00
// TRUNCATE calculates trunc of float expression with precision
var TRUNCATE = func(floatExpression jet.FloatExpression, precision jet.IntegerExpression) jet.FloatExpression {
return jet.NewFloatFunc("TRUNCATE", floatExpression, precision)
}
2019-08-14 10:11:43 +02:00
// LN calculates natural algorithm of float expression
var LN = jet.LN
// LOG calculates logarithm of float expression
var LOG = jet.LOG
2019-08-03 14:10:47 +02:00
// ----------------- Aggregate functions -------------------//
2019-08-14 10:11:43 +02:00
// AVG is aggregate function used to calculate avg value from numeric expression
var AVG = jet.AVG
// BIT_AND is aggregate function used to calculates the bitwise AND of all non-null input values, or null if none.
2019-08-03 14:10:47 +02:00
var BIT_AND = jet.BIT_AND
2019-08-14 10:11:43 +02:00
// BIT_OR is aggregate function used to calculates the bitwise OR of all non-null input values, or null if none.
2019-08-03 14:10:47 +02:00
var BIT_OR = jet.BIT_OR
2019-08-14 10:11:43 +02:00
// COUNT is aggregate function. Returns number of input rows for which the value of expression is not null.
var COUNT = jet.COUNT
// MAX is aggregate function. Returns maximum value of expression across all input values
var MAX = jet.MAX
2019-08-14 10:11:43 +02:00
// MAXi is aggregate function. Returns maximum value of int expression across all input values
2019-08-03 14:10:47 +02:00
var MAXi = jet.MAXi
2019-08-14 10:11:43 +02:00
// MAXf is aggregate function. Returns maximum value of float expression across all input values
var MAXf = jet.MAXf
// MIN is aggregate function. Returns minimum value of int expression across all input values
var MIN = jet.MIN
2019-08-14 10:11:43 +02:00
// MINi is aggregate function. Returns minimum value of int expression across all input values
2019-08-03 14:10:47 +02:00
var MINi = jet.MINi
2019-08-14 10:11:43 +02:00
// MINf is aggregate function. Returns minimum value of float expression across all input values
var MINf = jet.MINf
// SUM is aggregate function. Returns sum of all expressions
var SUM = jet.SUM
2019-08-17 10:43:16 +02:00
// SUMi is aggregate function. Returns sum of integer expression.
2019-08-03 14:10:47 +02:00
var SUMi = jet.SUMi
2019-08-17 10:43:16 +02:00
// SUMf is aggregate function. Returns sum of float expression.
var SUMf = jet.SUMf
// -------------------- Window functions -----------------------//
// ROW_NUMBER returns number of the current row within its partition, counting from 1
var ROW_NUMBER = jet.ROW_NUMBER
// RANK of the current row with gaps; same as row_number of its first peer
var RANK = jet.RANK
// DENSE_RANK returns rank of the current row without gaps; this function counts peer groups
var DENSE_RANK = jet.DENSE_RANK
// PERCENT_RANK calculates relative rank of the current row: (rank - 1) / (total partition rows - 1)
var PERCENT_RANK = jet.PERCENT_RANK
// CUME_DIST calculates cumulative distribution: (number of partition rows preceding or peer with current row) / total partition rows
var CUME_DIST = jet.CUME_DIST
// NTILE returns integer ranging from 1 to the argument value, dividing the partition as equally as possible
var NTILE = jet.NTILE
// LAG returns value evaluated at the row that is offset rows before the current row within the partition;
// if there is no such row, instead return default (which must be of the same type as value).
// Both offset and default are evaluated with respect to the current row.
// If omitted, offset defaults to 1 and default to null
var LAG = jet.LAG
// LEAD returns value evaluated at the row that is offset rows after the current row within the partition;
// if there is no such row, instead return default (which must be of the same type as value).
// Both offset and default are evaluated with respect to the current row.
// If omitted, offset defaults to 1 and default to null
var LEAD = jet.LEAD
// FIRST_VALUE returns value evaluated at the row that is the first row of the window frame
var FIRST_VALUE = jet.FIRST_VALUE
// LAST_VALUE returns value evaluated at the row that is the last row of the window frame
var LAST_VALUE = jet.LAST_VALUE
// NTH_VALUE returns value evaluated at the row that is the nth row of the window frame (counting from 1); null if no such row
var NTH_VALUE = jet.NTH_VALUE
2019-08-03 14:10:47 +02:00
//--------------------- String functions ------------------//
2019-08-14 10:11:43 +02:00
// BIT_LENGTH returns number of bits in string expression
2019-08-03 14:10:47 +02:00
var BIT_LENGTH = jet.BIT_LENGTH
2019-08-14 10:11:43 +02:00
// CHAR_LENGTH returns number of characters in string expression
2019-08-03 14:10:47 +02:00
var CHAR_LENGTH = jet.CHAR_LENGTH
2019-08-14 10:11:43 +02:00
// OCTET_LENGTH returns number of bytes in string expression
2019-08-03 14:10:47 +02:00
var OCTET_LENGTH = jet.OCTET_LENGTH
2019-08-14 10:11:43 +02:00
// LOWER returns string expression in lower case
2019-08-03 14:10:47 +02:00
var LOWER = jet.LOWER
2019-08-14 10:11:43 +02:00
// UPPER returns string expression in upper case
2019-08-03 14:10:47 +02:00
var UPPER = jet.UPPER
2019-08-14 10:11:43 +02:00
// LTRIM removes the longest string containing only characters
// from characters (a space by default) from the start of string
2019-08-03 14:10:47 +02:00
var LTRIM = jet.LTRIM
2019-08-14 10:11:43 +02:00
// RTRIM removes the longest string containing only characters
// from characters (a space by default) from the end of string
2019-08-03 14:10:47 +02:00
var RTRIM = jet.RTRIM
2019-08-14 10:11:43 +02:00
// CONCAT adds two or more expressions together
var CONCAT = jet.CONCAT
2019-08-14 10:11:43 +02:00
// CONCAT_WS adds two or more expressions together with a separator.
var CONCAT_WS = jet.CONCAT_WS
2019-08-14 10:11:43 +02:00
// FORMAT formats a number to a format like "#,###,###.##", rounded to a specified number of decimal places, then it returns the result as a string.
var FORMAT = jet.FORMAT
2019-08-14 10:11:43 +02:00
// LEFT returns first n characters in the string.
// When n is negative, return all but last |n| characters.
2019-08-03 14:10:47 +02:00
var LEFT = jet.LEFT
2019-08-14 10:11:43 +02:00
// RIGHT returns last n characters in the string.
// When n is negative, return all but first |n| characters.
2019-08-03 14:10:47 +02:00
var RIGHT = jet.RIGHT
2019-08-14 10:11:43 +02:00
// LENGTH returns number of characters in string with a given encoding
func LENGTH(str jet.StringExpression) jet.StringExpression {
return jet.LENGTH(str)
}
2019-08-14 10:11:43 +02:00
// LPAD fills up the string to length length by prepending the characters
// fill (a space by default). If the string is already longer than length
// then it is truncated (on the right).
func LPAD(str jet.StringExpression, length jet.IntegerExpression, text jet.StringExpression) jet.StringExpression {
return jet.LPAD(str, length, text)
}
2019-08-14 10:11:43 +02:00
// RPAD fills up the string to length length by appending the characters
// fill (a space by default). If the string is already longer than length then it is truncated.
func RPAD(str jet.StringExpression, length jet.IntegerExpression, text jet.StringExpression) jet.StringExpression {
return jet.RPAD(str, length, text)
}
2019-08-14 10:11:43 +02:00
// MD5 calculates the MD5 hash of string, returning the result in hexadecimal
2019-08-03 14:10:47 +02:00
var MD5 = jet.MD5
2019-08-14 10:11:43 +02:00
// REPEAT repeats string the specified number of times
2019-08-03 14:10:47 +02:00
var REPEAT = jet.REPEAT
2019-08-14 10:11:43 +02:00
// REPLACE replaces all occurrences in string of substring from with substring to
2019-08-03 14:10:47 +02:00
var REPLACE = jet.REPLACE
2019-08-14 10:11:43 +02:00
// REVERSE returns reversed string.
2019-08-03 14:10:47 +02:00
var REVERSE = jet.REVERSE
2019-08-14 10:11:43 +02:00
// SUBSTR extracts substring
2019-08-03 14:10:47 +02:00
var SUBSTR = jet.SUBSTR
2019-08-14 10:11:43 +02:00
// REGEXP_LIKE Returns 1 if the string expr matches the regular expression specified by the pattern pat, 0 otherwise.
var REGEXP_LIKE = jet.REGEXP_LIKE
2019-08-03 14:10:47 +02:00
// UUID_TO_BIN is a helper function that calls "uuid_to_bin" function on the passed value.
func UUID_TO_BIN(str StringExpression) StringExpression {
fn := Func("uuid_to_bin", str)
return StringExp(fn)
}
2019-08-03 14:10:47 +02:00
//----------------- Date/Time Functions and Operators ------------//
2019-08-17 10:43:16 +02:00
// EXTRACT function retrieves subfields such as year or hour from date/time values
2022-08-23 12:38:16 +02:00
//
// EXTRACT(DAY, User.CreatedAt)
func EXTRACT(field unitType, from Expression) IntegerExpression {
return IntExp(jet.EXTRACT(string(field), from))
}
2019-08-14 10:11:43 +02:00
// CURRENT_DATE returns current date
2019-08-03 14:10:47 +02:00
var CURRENT_DATE = jet.CURRENT_DATE
2019-08-14 10:11:43 +02:00
// CURRENT_TIME returns current time with time zone
func CURRENT_TIME(precision ...int) TimeExpression {
return TimeExp(jet.CURRENT_TIME(precision...))
}
// CURRENT_TIMESTAMP returns current timestamp with time zone
func CURRENT_TIMESTAMP(precision ...int) TimestampExpression {
return TimestampExp(jet.CURRENT_TIMESTAMP(precision...))
}
// NOW returns current datetime
func NOW(fsp ...int) DateTimeExpression {
if len(fsp) > 0 {
return jet.NewTimestampFunc("NOW", jet.FixedLiteral(int64(fsp[0])))
}
return jet.NewTimestampFunc("NOW")
}
2019-08-03 14:10:47 +02:00
2019-08-14 10:11:43 +02:00
// TIMESTAMP return a datetime value based on the arguments:
func TIMESTAMP(str StringExpression) TimestampExpression {
return jet.NewTimestampFunc("TIMESTAMP", str)
}
2019-08-14 10:11:43 +02:00
// UNIX_TIMESTAMP returns unix timestamp
func UNIX_TIMESTAMP(str StringExpression) TimestampExpression {
return jet.NewTimestampFunc("UNIX_TIMESTAMP", str)
}
// --------------- Conditional Expressions Functions -------------//
2019-08-14 10:11:43 +02:00
// EXISTS checks for existence of the rows in subQuery
2019-08-03 14:10:47 +02:00
var EXISTS = jet.EXISTS
2019-08-14 10:11:43 +02:00
// CASE create CASE operator with optional list of expressions
2019-08-03 14:10:47 +02:00
var CASE = jet.CASE
// COALESCE function returns the first of its arguments that is not null.
var COALESCE = jet.COALESCE
// NULLIF function returns a null value if value1 equals value2; otherwise it returns value1.
var NULLIF = jet.NULLIF
// GREATEST selects the largest value from a list of expressions, or null if any of the expressions is null.
var GREATEST = jet.GREATEST
// LEAST selects the smallest value from a list of expressions, or null if any of the expressions is null.
var LEAST = jet.LEAST
// ----------------------- Group By operators ----------------------------//
// WITH_ROLLUP operator is used with the GROUP BY clause to generate all prefixes of a group of columns including the empty list.
// It creates extra rows in the result set that represent the subtotal values for each combination of columns.
var WITH_ROLLUP = jet.WITH_ROLLUP
// GROUPING function is used to identify which columns are included in a grouping set or a subtotal row. It takes as input
// the name of a column and returns 1 if the column is not included in the current grouping set, and 0 otherwise.
// It can be also used with multiple parameters to check if a set of columns is included in the current grouping set. The result
// of the GROUPING function would then be an integer bit mask having 1s for the arguments which have GROUPING(argument) as 1.
var GROUPING = jet.GROUPING