8.47. SQLAlchemy Func About
Date Functions
Group Functions
Numeric Functions
String Functions
System Functions
8.47.1. Date Functions
Object |
Name Description |
---|---|
|
The CURRENT_DATE() SQL function |
|
The CURRENT_TIME() SQL function |
|
The CURRENT_TIMESTAMP() SQL function |
|
The localtime() SQL function |
|
The localtimestamp() SQL function |
|
The SQL now() datetime function |
8.47.2. Group Functions
Object |
Name Description |
---|---|
|
Implement the GROUPING SETS grouping operation |
|
Represent the 'next value', given a Sequence as its single argument |
|
Implement the ROLLUP grouping operation |
8.47.3. Numeric Functions
Object |
Name Description |
---|---|
|
Support for the ARRAY_AGG function |
|
The ANSI COUNT aggregate function. With no arguments, emits COUNT * |
|
Implement the CUBE grouping operation |
|
Implement the cume_dist hypothetical-set aggregate function |
|
Implement the dense_rank hypothetical-set aggregate function |
|
The SQL MAX() aggregate function |
|
The SQL MIN() aggregate function |
|
Implement the mode ordered-set aggregate function |
|
Implement the percent_rank hypothetical-set aggregate function |
|
Implement the percentile_cont ordered-set aggregate function |
|
Implement the percentile_disc ordered-set aggregate function |
|
The RANDOM() SQL function |
|
Implement the rank hypothetical-set aggregate function |
|
The SQL SUM() aggregate function |
8.47.4. String Functions
Object |
Name Description |
---|---|
|
The CHAR_LENGTH() SQL function |
|
|
|
The SQL CONCAT() function, which concatenates strings |
8.47.5. System Functions
Object |
Name Description |
---|---|
|
The CURRENT_USER() SQL function |
|
The SESSION_USER() SQL function |
|
The SYSDATE() SQL function |
|
The USER() SQL function |
Object |
Name Description |
---|---|
|
Define a function in 'ansi' format, which doesn't render parenthesis |
|
Describe a named SQL function |
|
|
|
Base for SQL function-oriented constructs |
|
Define a 'generic' function |
|
Define a function where the return type is based on the sort expression type as defined by the expression passed to the |
|
Associate a callable with a particular func. name |
|
Define a function whose return type is the same as its arguments |
|