Couchbase
Last updated
Last updated
A SELECT statement can consist of the following basic clauses.
SELECT
INTO
FROM
JOIN
WHERE
GROUP BY
HAVING
UNION
ORDER BY
LIMIT
The following syntax diagram outlines the syntax supported by the SQL engine of the provider:
Return all columns:
Rename a column:
Cast a column's data as a different data type:
Search data:
The Couchbase APIs support the following operators in the WHERE clause: =, !=, <, <=, >, >=, IS NULL, LIKE, AND, OR, NOT, IN.
Return the number of items matching the query criteria:
Return the number of unique items matching the query criteria:
Return the unique items matching the query criteria:
Summarize data:
See Aggregate Functions below for details.
Retrieve data from multiple tables.
See JOIN Queries below for details.
Sort a result set in ascending order:
Restrict a result set to the specified number of rows:
Parameterize a query to pass in inputs at execution time. This enables you to create prepared statements and mitigate SQL injection attacks.
Below are several examples of SQL aggregate functions. You can use these with a GROUP BY clause to aggregate rows based on the specified GROUP BY criterion. This can be a reporting tool.
Returns the number of rows matching the query criteria.
Returns the number of distinct, non-null field values matching the query criteria.
Returns the average of the column values.
Returns the minimum column value.
Returns the maximum column value.
Returns the total sum of the column values.
Returns the number of rows matching the query criteria.
Returns the number of distinct, non-null field values matching the query criteria.
Returns the average of the column values.
Returns the minimum column value.
Returns the maximum column value.
Returns the total sum of the column values.
The Provider for Couchbase supports standard SQL joins like the following examples.
An inner join selects only rows from both tables that match the join condition:
A left join selects all rows in the FROM table and only matching rows in the JOIN table:
The following date literal functions can be used to filter date fields using relative intervals. Note that while the <, >, and = operators are supported for these functions, <= and >= are not.
The current day.
The previous day.
The following day.
Every day in the preceding week.
Every day in the current week.
Every day in the following week.
Also available:
L_LAST/L_THIS/L_NEXT MONTH
L_LAST/L_THIS/L_NEXT QUARTER
L_LAST/L_THIS/L_NEXT YEAR
The previous n days, excluding the current day.
The following n days, including the current day.
Also available:
L_LAST/L_NEXT_90_DAYS
Every day in every week, starting n weeks before current week, and ending in the previous week.
Every day in every week, starting the following week, and ending n weeks in the future.
Also available:
L_LAST/L_NEXT_N_MONTHS(n)
L_LAST/L_NEXT_N_QUARTERS(n)
L_LAST/L_NEXT_N_YEARS(n)
Returns array of the non-MISSING values in the group, including NULL values.
column: Any column expression.
Returns new array with value appended.
column: Any column expression.
value: The value to be appended to the array.
Returns new array with the concatenation of the input arrays.
column1: Any column expression.
column2: Any column expression.
Returns new array with distinct elements of input array.
column: Any column expression.
Returns the first non-NULL value in the array, or NULL.
column: Any column expression.
Returns new array with value pre-pended.
column: Any column expression.
value: The value to be pre-pended to the array.
Returns new array with value appended, if value is not already present, otherwise returns the unmodified input array.
column: Any column expression.
value: The value to append to the array.
Returns new array with all occurrences of value removed.
column: Any column expression.
value: The value to be removed from the array.
Returns new array with all occurrences of value removed.
column: Any column expression.
value1: The value to be replaced by value2.
value2: The value to replace value1.
integer_n: The maximum number of replacements to be performed.
Returns new array with all elements in reverse order.
column: Any column expression.
Returns new array with elements sorted in N1QL collation order.
column: Any column expression.
Unmarshals the JSON-encoded string into a N1QL value. The empty string is MISSING.
column: Any column expression.
Marshals the N1QL value into a JSON-encoded string. MISSING becomes the empty string.
column: Any column expression.
Number of bytes in an uncompressed JSON encoding of the value. The exact size is implementation-dependent. Always returns an integer, and never MISSING or NULL. Returns 0 for MISSING.
column: Any column expression.
Returns length of the value after evaluating the expression. The exact meaning of length depends on the type of the value: MISSING: MISSING; NULL: NULL; String: The length of the string.; Array: The number of elements in the array.; Object: The number of name/value pairs in the object; Any other value: NULL.
column: Any column expression.
Returns number of name-value pairs in the object.
column: Any column expression.
Returns array containing the attribute names of the object, in N1QL collation order.
column: Any column expression.
Returns array containing the attribute name and value pairs of the object, in N1QL collation order of the names.
column: Any column expression.
Returns array containing the attribute values of the object, in N1QL collation order of the corresponding names.
column: Any column expression.
Returns arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.
column: Any column expression.
Returns true if the array contains value.
column: Any column expression.
value: The value contained within the array.
Returns count of all the non-NULL values in the array, or zero if there are no such values.
column: Any column expression.
Returns the number of elements in the array.
column: Any column expression.
Returns the largest non-NULL, non-MISSING array element, in N1QL collation order.
column: Any column expression.
Returns smallest non-NULL, non-MISSING array element, in N1QL collation order.
column: Any column expression.
Returns the first position of value within the array, or -1. Array position is zero-based, i.e. the first position is 0.
column: Any column expression.
value: The value contained within the array.
Sum of all the non-NULL number values in the array, or zero if there are no such values.
column: Any column expression.
Largest non-NULL, non-MISSING value if the values are of the same type; otherwise NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns smallest non-NULL, non-MISSING value if the values are of the same type, otherwise returns NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns the first non-MISSING value.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-NULL, non-MISSING value.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-NULL value. Note that this function might return MISSING if there is no non-NULL value.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns MISSING if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
Returns NULL if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
Returns first non-MISSING, non-Inf number. Returns MISSING or NULL if a non-number input is encountered first.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-MISSING, non-NaN number. Returns MISSING or NULL if a non-number input is encountered first.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-MISSING, non-Inf, or non-NaN number. Returns MISSING or NULL if a non-number input is encountered first.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns NaN if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns NegInf if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns PosInf if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns system clock at function evaluation time, as UNIX milliseconds. Varies during a query.
Returns system clock at function evaluation time, as a string in a supported format. Varies during a query.
string_fmt: The datetime format to return the system clock in.
Performs date arithmetic, and returns result of computation. n and part are used to define an interval or duration, which is then added (or subtracted) to the UNIX time stamp, returning the result.
column: Any column expression.
integer_n: The number of string_part's to add to the column value.
string_part: The part to add integer_n to, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Performs date arithmetic. n and part are used to define an interval or duration, which is then added (or subtracted) to the date string in a supported format, returning the result.
column: Any column expression.
integer_n: The number of string_part's to add to the column value.
string_part: The part to add integer_n to, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Performs date arithmetic. Returns the elapsed time between two UNIX time stamps as an integer whose unit is part.
column1: Any column expression.
column2: Any column expression.
string_part: The unit of the result, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Performs date arithmetic. Returns the elapsed time between two date strings in a supported format, as an integer whose unit is part.
column1: Any column expression.
column2: Any column expression.
string_part: The unit of the result, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Returns date part as an integer. The date expression is a number representing UNIX milliseconds, and part is one of the following date part strings.
column1: Any column expression.
string_part: The component of the date to extract. Available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, millisecond, day_of_year, day_of_week, iso_week, iso_year, iso_dow, timezone, timezone_hour, and timezone_minute.
tz: The timezone to convert the local time to. Default to the system timezone if not specified. If an incorrect time zone is provided, the null is returned.
Returns date part as an integer. The date expression is a string in a supported format, and part is one of the supported date part strings.
column1: Any column expression.
string_part: The unit of the result, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, millisecond, day_of_year, day_of_week, iso_week, iso_year, iso_dow, timezone, timezone_hour, and timezone_minute.
Returns UNIX time stamp that has been truncated so that the given date part string is the least significant.
column1: Any column expression.
string_part: The least significant date part, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Returns ISO 8601 time stamp that has been truncated so that the given date part string is the least significant.
column1: Any column expression.
string_part: The least significant date part, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Returns date that has been converted in a supported format to UNIX milliseconds.
column1: Any column expression.
Returns date that has been converted in a supported format to UNIX milliseconds.
column1: Any column expression.
Returns the string in the supported format to which the UNIX milliseconds has been converted.
column1: Any column expression.
string_fmt: The datetime format to return the system clock in.
Returns the UTC string to which the UNIX time stamp has been converted in the supported format.
column1: Any column expression.
string_fmt: The datetime format to return the system clock in.
Converts the UNIX time stamp to a string in the named time zone, and returns the string.
column1: Any column expression.
string_tzname: The time zone name.
string_fmt: The datetime format to return the system clock in.
Returns statement time stamp as UNIX milliseconds; does not vary during a query.
Returns statement time stamp as a string in a supported format; does not vary during a query.
string_fmt: The datetime format to return the timestamp in.
Converts the ISO 8601 time stamp to UTC.
column1: Any column expression.
Converts the supported time stamp string to the named time zone.
column1: Any column expression.
string_tzname: The time zone name.
Returns base64 encoding of expression.
expression: Any column or literal expression.
Returns absolute value of the number.
expression: Any column or literal expression.
Returns arccosine in radians.
expression: Any column or literal expression.
Returns arcsine in radians.
expression: Any column or literal expression.
Returns arctangent in radians.
expression: Any column or literal expression.
Returns arctangent of expression2/expression1.
expression1: Any column or literal expression.
expression2: Any column or literal expression.
Returns smallest integer not less than the number.
expression: Any column or literal expression.
Returns cosine.
expression: Any column or literal expression.
Returns radians to degrees.
expression: Any column or literal expression.
Base of natural logarithms.
Returns e^expression.
expression: Any column or literal expression.
Returns log base e.
expression: Any column or literal expression.
Returns log base 10.
expression: Any column or literal expression.
Largest integer not greater than the number.
expression: Any column or literal expression.
Returns PI.
Returns expression1^expression2.
expression1: Any column or literal expression.
expression2: Any column or literal expression.
Returns degrees to radians.
expression: Any column or literal expression.
Returns pseudo-random number with optional seed.
expression: Any column or literal expression.
Rounds the value to the given number of integer digits to the right of the decimal point (left if digits is negative). Digits is 0 if not given.
expression: Any column or literal expression.
integer_digits: The number of digits to round to.
Valid values: -1, 0, or 1 for negative, zero, or positive numbers respectively.
expression: Any column or literal expression.
Returns sine.
expression: Any column or literal expression.
Returns square root.
expression: Any column or literal expression.
Returns tangent.
expression: Any column or literal expression.
Truncates the number to the given number of integer digits to the right of the decimal point (left if digits is negative). Digits is 0 if not given.
expression: Any column or literal expression.
integer_digits: The number of digits to truncate.
True if the string contains the substring.
column: Any column or literal expression.
string_substring: The substring to search for.
Converts the string so that the first letter of each word is uppercase and every other letter is lowercase.
column: Any column or literal expression.
Returns length of the string value.
column: Any column or literal expression.
Returns lowercase of the string value.
column: Any column or literal expression.
Returns string with all leading chars removed. White space by default.
column: Any column or literal expression.
string_chars: The leading characters to remove.
Returns the first position of the substring within the string, or -1. The position is zero-based, i.e., the first position is 0.
column: Any column or literal expression.
string_substring: The substring to search for.
Returns string formed by repeating expression n times.
column: Any column or literal expression.
integer_n: The number of times to repeat column.
Returns string with all occurrences of substr replaced with repl. If n is given, at most n replacements are performed.
column: The column expression.
string_substring: The regular expression to match.
string_replace: The value to replace the matched pattern.
integer_n: The maximum number of replacements to make.
Returns string with all trailing chars removed. White space by default.
column: Any column or literal expression.
string_chars: The trailing characters to remove.
Splits the string into an array of substrings separated by string_sep. If string_sep is not given, any combination of white space characters is used.
column: Any column or literal expression.
string_sep: The separator to split column on.
Returns substring from the integer position of the given length, or to the end of the string. The position is zero-based, i.e. the first position is 0. If position is negative, it is counted from the end of the string; -1 is the last position in the string.
column: Any column or literal expression.
integer_position: The starting position.
integer_length: The total length of the substring to retrieve.
Returns string with all leading and trailing chars removed. White space by default.
column: Any column or literal expression.
string_chars: The leading and trailing characters to remove.
Returns uppercase of the string value.
column: Any column or literal expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; Arrays are themselves; All other values are wrapped in an array.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; Arrays of length 1 are the result of TOATOM() on their single element; Objects of length 1 are the result of TOATOM() on their single value; Booleans, numbers, and strings are themselves; All other values are NULL.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; False is false; Numbers +0, -0, and NaN are false; Empty strings, arrays, and objects are false; All other values are true.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; False is 0; True is 1; Numbers are themselves; Strings that parse as numbers are those numbers; All other values are NULL.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; Objects are themselves; All other values are the empty object.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; False is "false"; True is "true"; Numbers are their string representation; Strings are themselves; All other values are NULL.
column: Any column expression.
Returns True if the string value contains the regular expression pattern.
column: The column expression.
string_pattern: The regular expression to match.
Returns True if the string value matches the regular expression pattern.
column: The column expression.
string_pattern: The regular expression to match.
Returns first position of the regular expression pattern within the string, or -1.
column: The column expression.
string_pattern: The regular expression to match.
Returns new string with occurrences of pattern replaced with string_replace. If n is given, at most n replacements are performed.
column: The column expression.
string_pattern: The regular expression to match.
string_replace: The value to replace the matched pattern.
integer_n: The maximum number of replacements to make.
Returns True if expression is an array, otherwise returns MISSING, NULL or false.
column: Any column expression.
Returns True if expression is a Boolean, number, or string, otherwise returns MISSING, NULL or false.
column: Any column expression.
Returns True if expression is a Boolean, otherwise returns MISSING, NULL or false.
column: Any column expression.
Returns True if expression is a number, otherwise returns MISSING, NULL or false.
column: Any column expression.
Returns True if expression is an object, otherwise returns MISSING, NULL or false.
column: Any column expression.
Returns True if expression is a string, otherwise returns MISSING, NULL or false.
column: Any column expression.
Returns one of the following strings, based on the value of expression: missing, null, boolean, number, string, array, object, or binary.
column: Any column expression.
Returns arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.
column: Any column expression.
Returns true if the array contains value.
column: Any column expression.
value: The value contained within the array.
Returns count of all the non-NULL values in the array, or zero if there are no such values.
column: Any column expression.
Returns the number of elements in the array.
column: Any column expression.
Returns the largest non-NULL, non-MISSING array element, in N1QL collation order.
column: Any column expression.
Returns smallest non-NULL, non-MISSING array element, in N1QL collation order.
column: Any column expression.
Returns the first position of value within the array, or -1. Array position is zero-based, i.e. the first position is 0.
column: Any column expression.
value: The value contained within the array.
Sum of all the non-NULL number values in the array, or zero if there are no such values.
column: Any column expression.
Largest non-NULL, non-MISSING value if the values are of the same type; otherwise NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns smallest non-NULL, non-MISSING value if the values are of the same type, otherwise returns NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns the first non-MISSING value.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-NULL, non-MISSING value.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-NULL value. Note that this function might return MISSING if there is no non-NULL value.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns MISSING if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
Returns NULL if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
Returns first non-MISSING, non-Inf number. Returns MISSING or NULL if a non-number input is encountered first.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-MISSING, non-NaN number. Returns MISSING or NULL if a non-number input is encountered first.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns first non-MISSING, non-Inf, or non-NaN number. Returns MISSING or NULL if a non-number input is encountered first.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns NaN if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns NegInf if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns PosInf if column1 = column2, otherwise returns column1. Returns MISSING or NULL if either input is MISSING or NULL.
column1: Any column expression.
column2: Any column expression.
column3: Any column expression.
column4: Any column expression.
Returns system clock at function evaluation time, as UNIX milliseconds. Varies during a query.
Returns system clock at function evaluation time, as a string in a supported format. Varies during a query.
string_fmt: The datetime format to return the system clock in.
Performs date arithmetic, and returns result of computation. n and part are used to define an interval or duration, which is then added (or subtracted) to the UNIX time stamp, returning the result.
column: Any column expression.
integer_n: The number of string_part's to add to the column value.
string_part: The part to add integer_n to, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Performs date arithmetic. n and part are used to define an interval or duration, which is then added (or subtracted) to the date string in a supported format, returning the result.
column: Any column expression.
integer_n: The number of string_part's to add to the column value.
string_part: The part to add integer_n to, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Performs date arithmetic. Returns the elapsed time between two UNIX time stamps as an integer whose unit is part.
column1: Any column expression.
column2: Any column expression.
string_part: The unit of the result, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Performs date arithmetic. Returns the elapsed time between two date strings in a supported format, as an integer whose unit is part.
column1: Any column expression.
column2: Any column expression.
string_part: The unit of the result, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Returns date part as an integer. The date expression is a number representing UNIX milliseconds, and part is one of the following date part strings.
column1: Any column expression.
string_part: The component of the date to extract. Available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, millisecond, day_of_year, day_of_week, iso_week, iso_year, iso_dow, timezone, timezone_hour, and timezone_minute.
tz: The timezone to convert the local time to. Default to the system timezone if not specified. If an incorrect time zone is provided, the null is returned.
Returns date part as an integer. The date expression is a string in a supported format, and part is one of the supported date part strings.
column1: Any column expression.
string_part: The unit of the result, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, millisecond, day_of_year, day_of_week, iso_week, iso_year, iso_dow, timezone, timezone_hour, and timezone_minute.
Returns UNIX time stamp that has been truncated so that the given date part string is the least significant.
column1: Any column expression.
string_part: The least significant date part, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Returns ISO 8601 time stamp that has been truncated so that the given date part string is the least significant.
column1: Any column expression.
string_part: The least significant date part, available values are: millennium, century, decade, year, quarter, month, week, day, hour, minute, second, and millisecond.
Returns date that has been converted in a supported format to UNIX milliseconds.
column1: Any column expression.
Returns date that has been converted in a supported format to UNIX milliseconds.
column1: Any column expression.
Returns the string in the supported format to which the UNIX milliseconds has been converted.
column1: Any column expression.
string_fmt: The datetime format to return the system clock in.
Returns the UTC string to which the UNIX time stamp has been converted in the supported format.
column1: Any column expression.
string_fmt: The datetime format to return the system clock in.
Converts the UNIX time stamp to a string in the named time zone, and returns the string.
column1: Any column expression.
string_tzname: The time zone name.
string_fmt: The datetime format to return the system clock in.
Returns statement time stamp as UNIX milliseconds; does not vary during a query.
Returns statement time stamp as a string in a supported format; does not vary during a query.
string_fmt: The datetime format to return the timestamp in.
Converts the ISO 8601 time stamp to UTC.
column1: Any column expression.
Converts the supported time stamp string to the named time zone.
column1: Any column expression.
string_tzname: The time zone name.
Returns base64 encoding of expression.
expression: Any column or literal expression.
Returns absolute value of the number.
expression: Any column or literal expression.
Returns arccosine in radians.
expression: Any column or literal expression.
Returns arcsine in radians.
expression: Any column or literal expression.
Returns arctangent in radians.
expression: Any column or literal expression.
Returns arctangent of expression2/expression1.
expression1: Any column or literal expression.
expression2: Any column or literal expression.
Returns smallest integer not less than the number.
expression: Any column or literal expression.
Returns cosine.
expression: Any column or literal expression.
Returns radians to degrees.
expression: Any column or literal expression.
Base of natural logarithms.
Returns e^expression.
expression: Any column or literal expression.
Returns log base e.
expression: Any column or literal expression.
Returns log base 10.
expression: Any column or literal expression.
Largest integer not greater than the number.
expression: Any column or literal expression.
Returns PI.
Returns expression1^expression2.
expression1: Any column or literal expression.
expression2: Any column or literal expression.
Returns degrees to radians.
expression: Any column or literal expression.
Returns pseudo-random number with optional seed.
expression: Any column or literal expression.
Rounds the value to the given number of integer digits to the right of the decimal point (left if digits is negative). Digits is 0 if not given.
expression: Any column or literal expression.
integer_digits: The number of digits to round to.
Valid values: -1, 0, or 1 for negative, zero, or positive numbers respectively.
expression: Any column or literal expression.
Returns sine.
expression: Any column or literal expression.
Returns square root.
expression: Any column or literal expression.
Returns tangent.
expression: Any column or literal expression.
Truncates the number to the given number of integer digits to the right of the decimal point (left if digits is negative). Digits is 0 if not given.
expression: Any column or literal expression.
integer_digits: The number of digits to truncate.
True if the string contains the substring.
column: Any column or literal expression.
string_substring: The substring to search for.
Converts the string so that the first letter of each word is uppercase and every other letter is lowercase.
column: Any column or literal expression.
Returns length of the string value.
column: Any column or literal expression.
Returns lowercase of the string value.
column: Any column or literal expression.
Returns string with all leading chars removed. White space by default.
column: Any column or literal expression.
string_chars: The leading characters to remove.
Returns the first position of the substring within the string, or -1. The position is zero-based, i.e., the first position is 0.
column: Any column or literal expression.
string_substring: The substring to search for.
Returns string formed by repeating expression n times.
column: Any column or literal expression.
integer_n: The number of times to repeat column.
Returns string with all occurrences of substr replaced with repl. If n is given, at most n replacements are performed.
column: The column expression.
string_substring: The regular expression to match.
string_replace: The value to replace the matched pattern.
integer_n: The maximum number of replacements to make.
Returns string with all trailing chars removed. White space by default.
column: Any column or literal expression.
string_chars: The trailing characters to remove.
Splits the string into an array of substrings separated by string_sep. If string_sep is not given, any combination of white space characters is used.
column: Any column or literal expression.
string_sep: The separator to split column on.
Returns substring from the integer position of the given length, or to the end of the string. The position is zero-based, i.e. the first position is 0. If position is negative, it is counted from the end of the string; -1 is the last position in the string.
column: Any column or literal expression.
integer_position: The starting position.
integer_length: The total length of the substring to retrieve.
Returns string with all leading and trailing chars removed. White space by default.
column: Any column or literal expression.
string_chars: The leading and trailing characters to remove.
Returns uppercase of the string value.
column: Any column or literal expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; Arrays are themselves; All other values are wrapped in an array.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; Arrays of length 1 are the result of TOATOM() on their single element; Objects of length 1 are the result of TOATOM() on their single value; Booleans, numbers, and strings are themselves; All other values are NULL.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; False is false; Numbers +0, -0, and NaN are false; Empty strings, arrays, and objects are false; All other values are true.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; False is 0; True is 1; Numbers are themselves; Strings that parse as numbers are those numbers; All other values are NULL.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; Objects are themselves; All other values are the empty object.
column: Any column expression.
Returns array as follows: MISSING is MISSING; NULL is NULL; False is "false"; True is "true"; Numbers are their string representation; Strings are themselves; All other values are NULL.
column: Any column expression.
SELECT
{
[ TOP
<numeric_literal> | DISTINCT
]
{
*
| {
<expression> [ [ AS
] <column_reference> ]
| { <table_name> | <correlation_name> } .*
} [ , ... ]
}
[ INTO
csv:// [ filename= ] <file_path> [ ;delimiter=tab ] ]
{
FROM
<table_reference> [ [ AS
] <identifier> ]
} [ , ... ]
[ [
INNER
| { { LEFT
| RIGHT
| FULL
} [ OUTER
] }
] JOIN
<table_reference> [ ON
<search_condition> ] [ [ AS
] <identifier> ]
] [ ... ]
[ WHERE
<search_condition> ]
[ GROUP
BY
<column_reference> [ , ... ]
[ HAVING
<search_condition> ]
[ UNION
[ ALL
] <select_statement> ]
[
ORDER
BY
<column_reference> [ ASC
| DESC
] [ NULLS FIRST
| NULLS LAST
]
]
[
LIMIT <expression>
[
{ OFFSET | , }
<expression>
]
]
} | SCOPE_IDENTITY()
<expression> ::=
| <column_reference>
| @ <parameter>
| ?
| COUNT( * | { [ DISTINCT
] <expression> } )
| { AVG
| MAX
| MIN
| SUM
| COUNT
} ( <expression> )
| NULLIF
( <expression> , <expression> )
| COALESCE
( <expression> , ... )
| CASE
<expression>
WHEN
{ <expression> | <search_condition> } THEN
{ <expression> | NULL
} [ ... ]
[ ELSE
{ <expression> | NULL
} ]
END
| <literal>
| <sql_function>
<search_condition> ::=
{
<expression> { = | > | < | >= | <= | <> | != | LIKE
| NOT
LIKE
| IN
| NOT
IN
| IS
NULL
| IS
NOT
NULL
| AND
| OR
| CONTAINS
| BETWEEN
} [ <expression> ]
} [ { AND
| OR
} ... ]
SELECT * FROM Customer
SELECT [TotalDue] AS MY_TotalDue FROM Customer
SELECT CAST(AnnualRevenue AS VARCHAR) AS Str_AnnualRevenue FROM Customer
SELECT * FROM Customer WHERE CustomerId = '12345'
SELECT * FROM Customer WHERE CustomerId = '12345';
SELECT COUNT(*) AS MyCount FROM Customer
SELECT COUNT(DISTINCT TotalDue) FROM Customer
SELECT DISTINCT TotalDue FROM Customer
SELECT TotalDue, MAX(AnnualRevenue) FROM Customer GROUP BY TotalDue
SELECT Customers.ContactName, Orders.OrderDate FROM Customers, Orders WHERE Customers.CustomerId=Orders.CustomerId
SELECT Name, TotalDue FROM Customer ORDER BY TotalDue ASC
SELECT Name, TotalDue FROM Customer LIMIT 10
SELECT * FROM Customer WHERE CustomerId = @param
SELECT COUNT(*) FROM Customer WHERE CustomerId = '12345'
SELECT COUNT(DISTINCT Name) AS DistinctValues FROM Customer WHERE CustomerId = '12345'
SELECT TotalDue, AVG(AnnualRevenue) FROM Customer WHERE CustomerId = '12345'
GROUP BY TotalDue
SELECT MIN(AnnualRevenue), TotalDue FROM Customer WHERE CustomerId = '12345'
GROUP BY TotalDue
SELECT TotalDue, MAX(AnnualRevenue) FROM Customer WHERE CustomerId = '12345'
GROUP BY TotalDue
SELECT SUM(AnnualRevenue) FROM Customer WHERE CustomerId = '12345'
SELECT COUNT(*) FROM Customer WHERE CustomerId = '12345'
SELECT COUNT(DISTINCT Name) AS DistinctValues FROM Customer WHERE CustomerId = '12345'
SELECT TotalDue, AVG(AnnualRevenue) FROM Customer WHERE CustomerId = '12345'
GROUP BY TotalDue
SELECT MIN(AnnualRevenue), TotalDue FROM Customer WHERE CustomerId = '12345'
GROUP BY TotalDue
SELECT TotalDue, MAX(AnnualRevenue) FROM Customer WHERE CustomerId = '12345'
GROUP BY TotalDue
SELECT SUM(AnnualRevenue) FROM Customer WHERE CustomerId = '12345'
SELECT Customers.ContactName, Orders.OrderDate FROM Customers, Orders WHERE Customers.CustomerId=Orders.CustomerId
SELECT Customers.ContactName, Orders.OrderDate FROM Customers LEFT OUTER JOIN Orders ON Customers.CustomerId=Orders.CustomerId
SELECT * FROM MyTable WHERE MyDateField = L_TODAY()
SELECT * FROM MyTable WHERE MyDateField = L_YESTERDAY()
SELECT * FROM MyTable WHERE MyDateField = L_TOMORROW()
SELECT * FROM MyTable WHERE MyDateField = L_LAST_WEEK()
SELECT * FROM MyTable WHERE MyDateField = L_THIS_WEEK()
SELECT * FROM MyTable WHERE MyDateField = L_NEXT_WEEK()
SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_DAYS(3)
SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_DAYS(3)
SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_WEEKS(3)
SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_WEEKS(3)