Filter berdasarkan kategori:
Menampilkan 24 dari 220 fungsi
SIGN
Returns the sign of a number: -1, 0, or 1.
INT64 or FLOAT64SIN
Menghitung nilai sinus dari sudut dalam radian.
FLOAT64SPLIT
Splits a string into an array based on a delimiter. Very useful for parsing CSV-style data.
ARRAY<STRING>SQRT
Calculates the square root of a number.
FLOAT64STARTS_WITH
Checks whether a string begins with a specified prefix. Returns a boolean.
BOOLSTDDEV
Calculates the sample standard deviation of numeric values. Measures how spread out the data is from its mean. An alias for STDDEV_SAMP.
FLOAT64STDDEV_POP
Calculates the population standard deviation of numeric values. Uses the N divisor formula (not N-1), suitable when the data represents an entire population.
FLOAT64STDDEV_SAMP
Calculates the sample standard deviation of numeric values. Uses the N-1 divisor formula (Bessel's correction), suitable for sample data that represents a larger population.
FLOAT64STRING_AGG
Concatenates string values from multiple rows into a single string with a specified delimiter. Very useful for creating lists or comma-separated values in BigQuery.
STRINGSTRPOS
Finds the first position of a substring within a string. A simplified version of INSTR.
INT64ST_AREA
Menghitung luas area dari objek GEOGRAPHY polygon dalam meter persegi.
FLOAT64ST_ASGEOJSON
Mengkonversi GEOGRAPHY ke GeoJSON string.
STRINGST_ASTEXT
Mengkonversi GEOGRAPHY ke Well-Known Text (WKT) string.
STRINGST_CONTAINS
Memeriksa apakah geography_1 sepenuhnya mengandung geography_2.
BOOLST_DISTANCE
Menghitung jarak terpendek antara dua objek GEOGRAPHY dalam meter.
FLOAT64ST_GEOGFROMTEXT
Membuat GEOGRAPHY dari Well-Known Text (WKT) string.
GEOGRAPHYST_GEOGPOINT
Membuat GEOGRAPHY point dari koordinat longitude dan latitude.
GEOGRAPHYST_INTERSECTS
Memeriksa apakah dua objek GEOGRAPHY memiliki intersection (bersinggungan atau overlap).
BOOLST_LENGTH
Menghitung panjang total dari linestring atau perimeter polygon dalam meter.
FLOAT64ST_UNION
Menggabungkan dua objek GEOGRAPHY menjadi satu. ST_UNION_AGG untuk aggregate.
GEOGRAPHYSUBSTR
Extracts a portion of characters from a string starting at a specified position. An alias for SUBSTRING, highly useful for data extraction and parsing.
STRINGSUBSTRING
Extracts a portion of characters from a string. Identical to SUBSTR, available for standard SQL compatibility.
STRINGSUM
Calculates the total sum of numeric values in a column. Supports multiple numeric types and is highly efficient for large-scale data analysis in BigQuery.
Same as input type (INT64, FLOAT64, NUMERIC, or BIGNUMERIC)TAN
Menghitung nilai tangen dari sudut dalam radian.
FLOAT64