ARRAY_AGG function [Aggregate]
Creates an unbounded, single-dimensional array from the specified expression for each
group where the array element type is identical to the specified expression.
CEILING function [Numeric]
Returns the first integer that is greater or equal to a given value. For positive
numbers, this is known as rounding up.
CONFLICT function [Miscellaneous]
Indicates if a column is a source of conflict for an UPDATE being performed against a
consolidated database in a SQL Remote environment.
DATENAME function [Date and time]
Returns the name of the specified part (such as the month June) of a TIMESTAMP or TIMESTAMP WITH TIME ZONE value, as a character string.
DENSE_RANK function [Ranking]
Calculates the rank of a value in a partition. For tied values, the
DENSE_RANK function does not leave gaps in the ranking
sequence.
EXP function [Numeric]
Returns the result of the base of natural logarithms e raised to the power of the
given argument.
GROUPING function [Aggregate]
Identifies whether a column in a GROUP BY operation result set is NULL because it is part of a subtotal row, or NULL because of the underlying data.
NCHAR function [String]
Returns an NCHAR string containing one character whose Unicode code point is given in
the parameter, or NULL if the value is not a valid code point value.
NOW function [Date and time]
Returns the current date and time as a TIMESTAMP value. The accuracy is limited by
the accuracy of the system clock.
NUMBER function [Miscellaneous]
Generates numbers starting at 1 for each successive row in the results of the query.
The NUMBER function is primarily intended for use in SELECT lists.
PATINDEX function [String]
Returns an integer representing the starting position of the first occurrence of a
pattern in a string.
PERCENT_RANK function [Ranking]
For any row X, defined by the function's arguments and ORDER BY specification, the
PERCENT_RANK function determines the rank of row X - 1, divided by the number of rows in the
group.
RANK function [Ranking]
Calculates the value of a rank in a group of values. For ties, the RANK function
leaves a gap in the ranking sequence.
REGR_R2 function [Aggregate]
Computes the coefficient of determination (also referred to as R-squared or the goodness of fit statistic) for the regression line.
REGR_SXX function [Aggregate]
Returns the sum of squares of the independent expressions used in a linear regression model. The REGR_SXX function can be used to evaluate the statistical validity of a regression model.
REGR_SXY function [Aggregate]
Returns the sum of products of the dependent and independent variables. The REGR_SXY function can be used to evaluate the statistical validity of a regression model.
ROUND function [Numeric]
Rounds the numeric-expression to the specified
integer-expression amount of places after the decimal
point.
SORTKEY function [String]
Generates sort key values. That is, values that can be used to sort character strings
based on alternate collation rules.
TEXTPTR function [Text and image]
Returns a 16-byte binary pointer to the specified column. This feature is provided
solely for compatibility with Transact-SQL and its use is not recommended.
TO_CHAR function [String]
Converts character data from any supported character set into the CHAR character set
for the database.
TRACEBACK function [Miscellaneous]
Returns statements on the stack of the most recent exception (error) that occurred
during a stored procedure, trigger, or custom function execution.
TRACED_PLAN function [Miscellaneous] (deprecated)
The diagnostic tracing feature is deprecated. Use the SQL Anywhere Profiler to diagnose issues in your database. This function is used by SQL Central to generate a graphical plan for a query using tracing data.
UNICODE function [String]
Returns an integer containing the Unicode code point of the first character in the
string, or NULL if the first character is not a valid encoding.
WATCOMSQL function [Miscellaneous]
Rewrites a Transact-SQL statement in the Watcom SQL dialect. This can be useful when converting existing Adaptive
Server Enterprise stored procedures into Watcom SQL syntax.
YMD function [Date and time]
Returns a date value corresponding to the given year, month, and day of the month.
Arguments are INTEGER values from -32768 to 32767.