Enum BasicSqlBuilder.WindowNullsPlacement
- Namespace
- LinqToDB.Internal.SqlProvider
- Assembly
- linq2db.dll
How the IGNORE NULLS modifier of a value/offset window function is emitted relative to the argument list.
protected enum BasicSqlBuilder.WindowNullsPlacement
- Extension Methods
Fields
AfterClose = 0Keyword after the closing parenthesis:
FUNC(args) IGNORE NULLS(Oracle, SQL Server 2022+, Informix).AfterLastArgument = 1Keyword inside the parentheses, after the last argument:
FUNC(..., expr IGNORE NULLS)(DuckDB).StringArgument = 2Quoted string as the last argument:
FUNC(args, 'IGNORE NULLS')(DB2).