Filter berdasarkan kategori:
Menampilkan 24 dari 220 fungsi
ABS
Returns the absolute (positive) value of a numeric input.
Same as input typeACOS
Menghitung arc cosinus (inverse cosine) - sudut dalam radian yang memiliki cosinus x.
FLOAT64ANY_VALUE
Returns one value from a group non-deterministically. Useful for retrieving a value from a column that is not being aggregated when all values in the group are the same.
Same as input typeAPPROX_COUNT_DISTINCT
Estimates the number of distinct values using the HyperLogLog++ algorithm. Much faster and less resource-intensive than COUNT(DISTINCT) for large datasets.
INT64APPROX_QUANTILES
Calculates approximate quantile boundaries from numeric data. Uses an efficient approximate algorithm for large datasets, returning an array with n+1 elements.
ARRAY<T>APPROX_TOP_COUNT
Returns the approximate most frequently occurring elements along with their counts. Uses a highly efficient approximate algorithm for large datasets.
ARRAY<STRUCT<value T, count INT64>>APPROX_TOP_SUM
Returns the approximate elements with the highest total weight. Similar to APPROX_TOP_COUNT but ranked by sum of weights rather than count.
ARRAY<STRUCT<value T, sum INT64>>ARRAY
Creates an array from a subquery or literal elements.
ARRAY<T>ARRAY_AGG
Collects values from multiple rows into an ARRAY. A powerful BigQuery function for building nested data structures.
ARRAY<T>ARRAY_CONCAT
Concatenates two or more arrays into a single array.
ARRAY<T>ARRAY_CONCAT_AGG
Concatenates multiple arrays into a single array. Useful when each row already contains an array and you want to merge them all into one.
ARRAY<T>ARRAY_IS_DISTINCT
Mengecek apakah semua elemen dalam array adalah unik (tidak ada duplikat).
BOOLARRAY_LENGTH
Returns the number of elements in an array.
INT64ARRAY_REVERSE
Membalik urutan elemen dalam array.
ARRAY<T>ARRAY_TO_STRING
Joins array elements into a string using a delimiter.
STRINGASCII
Returns the ASCII value (code point) of the first character in the string.
INT64ASIN
Menghitung arc sinus (inverse sine) - sudut dalam radian yang memiliki sinus x.
FLOAT64ATAN
Menghitung arc tangen (inverse tangent) - sudut dalam radian yang memiliki tangen x.
FLOAT64ATAN2
Menghitung arc tangen dari y/x dengan mempertimbangkan kuadran. Lebih akurat dari ATAN(y/x).
FLOAT64AVG
Calculates the average (mean) of numeric values in a column. Ignores NULL values and supports multiple numeric types in BigQuery.
FLOAT64BIT_AND
Performs a bitwise AND operation across all values in a group. Returns a value where each bit is 1 only if all input values have that bit set to 1.
INT64BIT_COUNT
Menghitung jumlah bit yang bernilai 1 dalam representasi binary.
INT64BIT_OR
Performs a bitwise OR operation across all values in a group. Returns a value where each bit is 1 if at least one input value has that bit set to 1.
INT64BIT_XOR
Performs a bitwise XOR operation across all values in a group. Returns a value where each bit is 1 if the number of input values with that bit set to 1 is odd.
INT64