8.52. SQLAlchemy Func Count
current_user
- The CURRENT_USER() SQL functionsession_user
- The SESSION_USER() SQL functionsysdate
- The SYSDATE() SQL functionuser
- The USER() SQL functionAnsiFunction
- Define a function in 'ansi' format, which doesn't render parenthesisFunction
- Describe a named SQL functionFunctionAsBinary
-FunctionElement
- Base for SQL function-oriented constructsGenericFunction
- Define a 'generic' functionOrderedSetAgg
- Define a function where the return type is based on the sort expression type as defined by the expression passed to theFunctionElement.within_group()
methodregister_function
- Associate a callable with a particular func. nameReturnTypeFromArgs
- Define a function whose return type is the same as its argumentsScalarFunctionColumn
-
8.52.1. About
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 |
|