Filter berdasarkan kategori:
Menampilkan 24 dari 220 fungsi
FORMAT_TIMESTAMP
Formats a TIMESTAMP value into a string. Supports timezone for accurate display.
STRINGGENERATE_ARRAY
Membuat array berisi sequence of numbers.
ARRAY<INT64> or ARRAY<FLOAT64>GENERATE_DATE_ARRAY
Membuat array berisi sequence of dates.
ARRAY<DATE>GENERATE_TIMESTAMP_ARRAY
Membuat array berisi sequence of timestamps.
ARRAY<TIMESTAMP>GENERATE_UUID
Menghasilkan UUID (Universally Unique Identifier) versi 4 secara random.
STRINGGREATEST
Mengembalikan nilai terbesar dari daftar ekspresi.
Same as input typeIEEE_DIVIDE
Performs division following the IEEE 754 standard, returning infinity or NaN instead of an error.
FLOAT64IF
Mengembalikan satu nilai jika kondisi TRUE, nilai lain jika FALSE.
Type of result expressionsIFF
Alias untuk IF. Mengembalikan true_result jika condition TRUE.
Type of result expressionsIFNULL
Mengembalikan expression jika tidak NULL, otherwise mengembalikan null_replacement.
Type of expressionsINITCAP
Capitalizes the first letter of each word and lowercases the rest. Title case transformation.
STRINGINSTR
Finds the position of a substring within a string. Supports searching from a specific position and locating the nth occurrence.
INT64JSON_ARRAY
Creates a JSON array from the provided values.
JSONJSON_ARRAY_LENGTH
Returns the number of elements in a JSON array.
INT64JSON_EXTRACT
Mengekstrak nilai dari JSON menggunakan JSONPath dan mengembalikan sebagai JSON.
JSONJSON_EXTRACT_ARRAY
Mengekstrak array dari JSON dan mengembalikan sebagai ARRAY<JSON>.
ARRAY<JSON>JSON_EXTRACT_SCALAR
Mengekstrak nilai scalar dari JSON dan mengembalikan sebagai STRING.
STRINGJSON_EXTRACT_STRING_ARRAY
Mengekstrak array of scalars dari JSON sebagai ARRAY<STRING>.
ARRAY<STRING>JSON_KEYS
Returns an array containing all keys from a JSON object.
ARRAY<STRING>JSON_OBJECT
Creates a JSON object from the provided key-value pairs.
JSONJSON_QUERY
Extracts a JSON value using JSONPath (SQL standard compliant).
JSONJSON_QUERY_ARRAY
Extracts an array from a native JSON type as ARRAY<JSON>.
ARRAY<JSON>JSON_TYPE
Returns the type of a JSON value (object, array, string, number, boolean, or null).
STRINGJSON_VALUE
Extracts a scalar value from JSON as a STRING (SQL standard compliant).
STRING