id
stringlengths
16
145
text
stringlengths
1
179k
title
stringclasses
1 value
snowflake_docs/st_difference_2_0.txt
Syntax ¶ ST_DIFFERENCE( <geography_expression_1> , <geography_expression_2> ) Copy
snowflake_docs/functions-table_8_0.txt
Using a Table as Input to a Table Function ¶ The argument to a table function can be a literal or an expression, such as a column of a table. For example, the SELECT statement below passes values from a table as arguments to a table function: CREATE OR REPLACE table dates_of_interest (event_date DATE); INSER...
snowflake_docs/create-stream_7_0.txt
Access Control Requirements ¶ access-control-overview-roles) used to execute this SQL command must have the overview.html
snowflake_docs/drop-database_1_0.txt
DROP DATABASE ¶ Removes a database from the system. See also:
snowflake_docs/rlike_7_0.txt
Examples ¶ Run the following commands to set up the data for the examples in this topic: > > CREATE OR REPLACE TABLE rlike_ex(city varchar(20)); > INSERT INTO rlike_ex VALUES ('Sacramento'), ('San Francisco'), ('San > Jose'), (null); > > > Copy
snowflake_docs/referential_constraints_0_0.txt
/ Schema:
snowflake_docs/alter-failover-group_20_0.txt
Executed from the source account ¶ Add ` myorg.myaccount3 ` to the list of target accounts to which replication of specified objects and failover from the source account is enabled. ALTER FAILOVER GROUP myfg ADD myorg.myaccount3 TO ALLOWED_ACCOUNTS; Copy Reset the object types list for replication in the source...
snowflake_docs/complete_task_graphs_3_0.txt
label-task-dag) of tasks) is next scheduled to start running, guide/tasks-intro.html
snowflake_docs/between_4_0.txt
Collation Details ¶ The expression ` A BETWEEN X AND Y ` is equivalent to ` A >= X AND A <= Y ` . The collations used for comparing with ` X ` and ` Y ` are independent and do not need to be identical, but both need to be compatible with the collation of ` A ` .
snowflake_docs/st_makeline_2_0.txt
Syntax ¶ ST_MAKELINE( <geography_expression_1> , <geography_expression_2> ) ST_MAKELINE( <geometry_expression_1> , <geometry_expression_2> ) Copy
snowflake_docs/execute-immediate-from_13_0.txt
Access Control Errors ¶ Error | 003001 (42501): Uncaught exception of type 'STATEMENT_ERROR' in file <file_name> on line <n> at position <m>: SQL access control error: Insufficient privileges to operate on schema '<schema_name>' ---|--- Cause | The role used to execute the statement does not have the privi...
snowflake_docs/show-catalog-integrations_5_0.txt
Access control requirements ¶ access-control-overview-roles) used to execute this SQL command must have at control-overview.html
snowflake_docs/substr_7_0.txt
Examples ¶ SELECT SUBSTR('testing 1 2 3', 9, 5) FROM x; -------------------------------+ substr('testing 1 2 3', 9, 5) | -------------------------------+ 1 2 3 | -------------------------------+ SELECT '123456', pos, len, SUBSTR('123456', pos, len) FROM o; --...
snowflake_docs/show-services_8_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- Any one of these privileges: OWNERSHIP, USAGE, MONITOR or OPERATE | Service | Note that operating on any object in a schema also requires the USAGE privilege on the parent database and schema. For instructions on creati...
snowflake_docs/desc-aggregation-policy_0_0.txt
/ 1. Aggregation Policy 7. Projection Policy POLICY
snowflake_docs/snowpipe_streaming_client_history_4_0.txt
Examples ¶ Query the amount of time spent loading data into Snowflake tables using Snowpipe Streaming within the last 365 days. SELECT * FROM SNOWFLAKE.ACCOUNT_USAGE.SNOWPIPE_STREAMING_CLIENT_HISTORY; Copy The query returns the following results. > > > +----------------+----------------------------+-------------...
snowflake_docs/as_timestamp_0_0.txt
/ 1. JSON and XML Parsing 9. Array/Object Creation and Manipulation 43. Map Creation and Manipulation 51. Extraction 58. Conversion/Casting 82. Type Predicates Categories: semistructured) (Cast)
snowflake_docs/show-sequences_1_0.txt
SHOW SEQUENCES ¶ Lists all the sequences for which you have access privileges. This command can be used to list the sequences for a specified schema or database (or the current schema/database for the session), or your entire account. See also:
snowflake_docs/bitnot_6_0.txt
Examples ¶ This example shows how to use ` BITNOT ` : > Create a simple table and data: > >> >> CREATE TABLE bits (ID INTEGER, bit1 INTEGER, bit2 INTEGER); >> >> >> Copy >> >> >> INSERT INTO bits (ID, bit1, bit2) VALUES >> ( 11, 1, 1), -- Bits are all the same. >> ( 24, ...
snowflake_docs/grant-application-role_0_0.txt
/ 1. APPLICATION 7. APPLICATION PACKAGE 12. APPLICATION ROLE 19. Additional Commands GRANT APPLICATION ROLE
snowflake_docs/alter-authentication-policy_5_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- OWNERSHIP | Authentication policy | Only the SECURITYADMIN role, or a higher role, has this privilege by default. The privilege can be granted to additional roles as needed. Note that operating on any object in a schema...
snowflake_docs/conventions_5_0.txt
XML Data ¶ Notation | Description ---|--- ` <item> ... </item> ` | Angle brackets indicate the start or end of an XML element. Was this page helpful? Yes No Inc. All Rights Reserved . On this page 1. Syntax, Examples, and Text 2. JSON Data 3. XML Data Language : **English**
snowflake_docs/system_get_job_logs_6_0.txt
Usage notes ¶ * Only the user who created the job can access the logs from the job container.
snowflake_docs/show-databases_2_0.txt
Syntax ¶ SHOW [ TERSE ] DATABASES [ HISTORY ] [ LIKE '<pattern>' ] [ STARTS WITH '<name_string>' ] [ LIMIT <rows> [ FROM '<name_string>' ] ] Copy
snowflake_docs/sql-all_12_0.txt
label-task-dag) ) independent of the schedule defined for the task. | Returns the logical execution plan for the specified SQL statement. **G** | | Downloads data files from one of the following Snowflake stages to a local directory/folder on a client machine. | Assigns an application role to an account role or...
snowflake_docs/to_object_1_0.txt
TO_OBJECT ¶ semistructured.html
snowflake_docs/update_2_0.txt
Syntax ¶ UPDATE <target_table> SET <col_name> = <value> [ , <col_name> = <value> , ... ] [ FROM <additional_tables> ] [ WHERE <condition> ] Copy
snowflake_docs/ratio_to_report_1_0.txt
RATIO_TO_REPORT ¶ Returns the ratio of a value within a group to the sum of the values within the group. If ` _ expr1 _ ` evaluates to null or the sum of ` _ expr1 _ ` within the group evaluates to 0, then RATIO_TO_REPORT returns null.
snowflake_docs/dense_rank_3_0.txt
Arguments ¶ None. The function itself takes no arguments because it returns the rank (relative position) of the current row within the window, which is ordered by ` <expr2> ` . The ordering of the window determines the rank, so there is no need to pass an additional parameter to the RANK function.
snowflake_docs/create-stage_1_0.txt
CREATE STAGE ¶ Creates a new named _internal_ or _external_ stage to use for loading data from files into Snowflake tables and unloading data from tables into files: Internal stage : Stores data files internally within Snowflake. Internal stages can be either permanent or temporary. For more details, see [ Choosing...
snowflake_docs/localtimestamp_0_0.txt
/ 1. General 14. Session 29. Session Object 41. Alert context) LOCALTIMESTAMP Categories:
snowflake_docs/desc-streamlit_3_0.txt
Required Parameters ¶ ` _ name _ ` Specifies the identifier for the Streamlit object to describe. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.
snowflake_docs/fetch_3_0.txt
label-snowscript-declare-variable) > . > > The variable’s data type must be compatible with the value to be fetched.
snowflake_docs/current_timestamp_0_0.txt
/ 1. General 14. Session 29. Session Object 41. Alert context) CURRENT_TIMESTAMP Categories:
snowflake_docs/call_1_0.txt
CALL ¶ procedures-overview) . See also: procedures)
snowflake_docs/drop-account_3_0.txt
Parameters ¶ ` _ name _ ` Specifies the name of the account being dropped. As an example, if the full account identifier is ` myorg-account123 ` , then specify ` account123 ` as the name. If you do not know the account name, execute the [ SHOW ORGANIZATION account_name ` column. The legacy account locator cannot...
snowflake_docs/show-iceberg-tables_9_0.txt
Output ¶ Note The following output schema is for the SHOW ICEBERG TABLES command. For information about the output of SHOW TABLES, see Identifying Iceberg Tables with SHOW TABLES (in this topic). The command output provides table properties and metadata in the following columns: Column | Description ---|--- ` ...
snowflake_docs/expressions-conditional_1_0.txt
Conditional Expression Functions ¶ Conditional expression functions return values based on logical operations using each expression passed to the function. For example, the ` BOOLOR ` function takes two numeric expressions and returns True if either (or both) of the expressions evaluate to a True (non-zero) value. ...
snowflake_docs/system_estimate_search_optimization_costs_1_0.txt
SYSTEM$ESTIMATE_SEARCH_OPTIMIZATION_COSTS ¶ This feature requires Enterprise Edition (or higher). To inquire about upgrading, please contact [ Snowflake Support Snowflake-Lodge) . guide/search-optimization-service) to a given table and configuring specific columns for search optimization. Important Cost estimates re...
snowflake_docs/rlike_4_0.txt
Returns ¶ Returns a BOOLEAN or NULL. * When RLIKE is specified, the value is TRUE if there is a match. Otherwise, returns FALSE. * When NOT RLIKE is specified, the value is TRUE if there is no match. Otherwise, returns FALSE. * When either RLIKE or NOT RLIKE is specified, returns NULL if any argument is NULL...
snowflake_docs/replication_databases_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- REGION_GROUP | TEXT | groups) where the account that stores the database is located. SNOWFLAKE_REGION | TEXT | Snowflake Region where the account that stores the database is located. A Snowflake Region is a distinct location within a cloud platform re...
snowflake_docs/st_pointn_8_0.txt
GEOMETRY Examples ¶ The following query returns the second Point in a LineString: ALTER SESSION SET GEOMETRY_OUTPUT_FORMAT='WKT'; SELECT ST_POINTN(TO_GEOMETRY('LINESTRING(1 1, 2 2, 3 3, 4 4)'), 2); +-------------------------------------------------------------+ | ST_POINTN(TO_GEOMETRY('LINESTRING(1 1...
snowflake_docs/cast_4_0.txt
label-data-types-numeric-precision-and-scale) (for numbers/decimals), the properties can be included. ` RENAME FIELDS ` want to change the OBJECT to use different key-value pairs. The values in the original object are copied to the new key-value pairs in the order in which they appear. types-structured.html
snowflake_docs/system_get_classification_result_7_0.txt
Examples ¶ Return the Data Classification result for a table: > > SELECT SYSTEM$GET_CLASSIFICATION_RESULT('hr.tables.empl_info'); > > > Copy Was this page helpful? Yes No Inc. All Rights Reserved . On this page 1. Syntax 2. Arguments 3. Returns 4. Usage notes 5. Examples Language : **Englis...
snowflake_docs/alter-row-access-policy_7_0.txt
label-access-control-securable-objects) , see [ Overview of For additional details on row access policy DDL and privileges, see [ Manage security-row-mgmt-approach) .
snowflake_docs/complete-snowflake-cortex_6_0.txt
label-data-type-array) of objects representing a semistructured.html
snowflake_docs/create-compute-pool_0_0.txt
/ 1. IMAGE REGISTRY AND REPOSITORY 5. COMPUTE POOL 11. SERVICE 18. JOB container-services) CREATE COMPUTE POOL
snowflake_docs/show-global-accounts_4_0.txt
Usage Notes ¶ * Columns that start with the prefix ` is_ ` return either ` Y ` (yes) or ` N ` (no). * The command does not require a running warehouse to execute. * The command returns a maximum of 10K records for the specified object type, as dictated by the access privileges for the role used to execu...
snowflake_docs/contract_items_legacy_1_0.txt
CONTRACT_ITEMS View (Legacy) ¶ The CONTRACT_ITEMS view in the ORGANIZATION_USAGE schema can be used to return the contract information for an organization. Important This topic describes the legacy version of the CONTRACT_ITEMS view. If the AMOUNT column of your view shows only two decimal places, then your To upgra...
snowflake_docs/show_0_0.txt
/
snowflake_docs/load_history_3_0.txt
Usage Notes ¶ * The historical data for COPY INTO commands is removed from the view when a table is dropped. * The view only includes COPY INTO commands that executed to completion, with or without errors. No record is added if the transaction is rolled back, for example, or if the ON_ERROR = ABORT_STATEMENT co...
snowflake_docs/alter-dynamic-table_0_0.txt
/ 2. Table 13. Dynamic Table 19. Event Table 24. External Table 30. Hybrid Table 36. Iceberg Table 43. View 49. Materialized View 56. Sequence ALTER DYNAMIC TABLE
snowflake_docs/show-masking-policies_0_0.txt
/ 1. Column-level Security 7. Row Access Policy 13. Tag MASKING POLICIES
snowflake_docs/group-by-rollup_4_0.txt
Examples ¶ Start by creating and loading a table with information about sales from a chain store that has branches in different cities and states/territories. > > -- Create some tables and insert some rows. > CREATE TABLE products (product_ID INTEGER, wholesale_price REAL); > INSERT INTO products (produc...
snowflake_docs/result_scan_8_0.txt
Examples using DESCRIBE and SHOW Commands ¶ retrieve particular fields of interest, for example the user’s default role. Note that because the output column names from the ` DESC USER ` command were generated in lowercase, the commands use delimited identifier notation (double quotes) around the column names in th...
snowflake_docs/create-image-repository_2_0.txt
Syntax ¶ CREATE [ OR REPLACE ] IMAGE REPOSITORY [ IF NOT EXISTS ] <name> Copy
snowflake_docs/decompress_binary_5_0.txt
Usage Notes ¶ * If the compression method is unknown or invalid, the query fails. * The compression method name (e.g. ` ZLIB ` ) is case-insensitive.
snowflake_docs/show-replication-groups_3_0.txt
Parameters ¶ ` _ account _ ` Specifies the identifier for the account.
snowflake_docs/create-external-volume_9_0.txt
label-access-control-securable-objects) , see [ Overview of
snowflake_docs/alter-security-integration-api-auth_7_0.txt
Access control requirements ¶ access-control-overview-roles) used to execute this SQL command must have the overview.html
snowflake_docs/hybrid_table_usage_history_3_0.txt
Usage Notes ¶ * Latency for the view may be up to 180 minutes (3 hours).
snowflake_docs/create-stage_14_2.txt
the BOM either causing an error or being merged into the first column in the table. Default : ` TRUE `
snowflake_docs/systimestamp_5_0.txt
Usage Notes ¶ * Do not use the returned value for precise time ordering between concurrent queries (processed by the same virtual warehouse) because the queries might be serviced by different compute resources (in the warehouse).
snowflake_docs/system_get_snowflake_platform_info_5_0.txt
Examples ¶ Query the IDs of the virtual network in which your Snowflake account is located: > > SELECT SYSTEM$GET_SNOWFLAKE_PLATFORM_INFO(); > > > Copy Was this page helpful? Yes No Inc. All Rights Reserved . On this page 1. Syntax 2. Arguments 3. Usage notes 4. Examples Language : **English**
snowflake_docs/system_get_tag_on_current_column_2_0.txt
Syntax ¶ SYSTEM$GET_TAG_ON_CURRENT_COLUMN( '<tag_name>' ) Copy
snowflake_docs/desc-aggregation-policy_1_0.txt
DESCRIBE AGGREGATION POLICY ¶ This feature requires Enterprise Edition (or higher). To inquire about upgrading, please contact [ Snowflake Support Snowflake-Lodge) . Available to all accounts that are Enterprise Edition (or higher). To inquire about upgrading, please contact [ Snowflake Support Snowflake-Lodge) . gu...
snowflake_docs/is_date-value_1_0.txt
IS_DATE , IS_DATE_VALUE ¶ Verifies whether a VARIANT value contains a DATE value. These functions are synonymous. See also:
snowflake_docs/boolor_agg_1_0.txt
BOOLOR_AGG ¶ Returns TRUE if at least one Boolean record in a group evaluates to TRUE. If all records in the group are NULL, or if the group is empty, the function returns NULL. See also:
snowflake_docs/infer_schema_5_0.txt
Usage notes ¶ * For CSV files, column names can be defined by using the file format option ` PARSE_HEADER = [ TRUE | FALSE ] ` . > * If the option is set to TRUE, the first row headers will be used to > determine column names. > > * The default value FALSE will return column names as c*, where * is...
snowflake_docs/query_history_5_0.txt
Output ¶ The function returns the following columns: Column Name | Data Type | Description ---|---|--- QUERY_ID | TEXT | The statement’s unique id. QUERY_TEXT | TEXT | Text of the SQL statement. DATABASE_NAME | TEXT | Database that was specified in the context of the query at compilation. SCHEMA_NAME | TEX...
snowflake_docs/file_formats_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- FILE_FORMAT_CATALOG | TEXT | Database that the file format belongs to FILE_FORMAT_SCHEMA | TEXT | Schema that the file format belongs to FILE_FORMAT_NAME | TEXT | Name of the file format FILE_FORMAT_OWNER | TEXT | Name of the role that owns the fi...
snowflake_docs/extract_semantic_categories_3_0.txt
Syntax ¶ EXTRACT_SEMANTIC_CATEGORIES( '<object_name>' [ , <max_rows_to_scan> ] ) Copy
snowflake_docs/drop-image-repository_7_0.txt
label-access-control-securable-objects) , see [ Overview of
snowflake_docs/alter-table_18_1.txt
e : Data loading only Definition : String used to convert to and from SQL NULL. Snowflake replaces these strings in the data load source with SQL NULL. To specify more than one string, enclose the list of strings in parentheses and use commas to separate each value. This file format option is applied to the following...
snowflake_docs/select_28_0.txt
Selecting a Column by Position ¶ This example shows how to use ` $ ` to specify a column by column number, rather than by column name: > > SELECT $2 FROM employee_table ORDER BY $2; > +------------+ > | $2 | > |------------| > | Comstock | > | Levine | > | Montgomery | > ...
snowflake_docs/list_0_0.txt
/ 1. Commands 5. Methods
snowflake_docs/query_acceleration_eligible_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- QUERY_ID | TEXT | Internal/system-generated identifier for the SQL statement. QUERY_TEXT | TEXT | Text of the SQL statement. START_TIME | TIMESTAMP_LTZ | Statement start time. END_TIME | TIMESTAMP_LTZ | Statement end time. WAREHOUSE_NAME | TEXT ...
snowflake_docs/alter-table-column_6_0.txt
Examples ¶ Example setup: > > CREATE OR REPLACE TABLE t1 ( > c1 NUMBER NOT NULL, > c2 NUMBER DEFAULT 3, > c3 NUMBER DEFAULT seq1.nextval, > c4 VARCHAR(20) DEFAULT 'abcde', > c5 STRING); > > DESC TABLE t1; > > > +------+-------------------+--------+-------+--------------...
snowflake_docs/desc-result_0_0.txt
/ 1. Parameters 4. Context 10. Variables 14. Queries
snowflake_docs/array_distinct_3_0.txt
Arguments ¶ ` _ array _ ` An array that might contain duplicate elements to be removed.
snowflake_docs/task_dependents_1_0.txt
TASK_DEPENDENTS ¶ guide/tasks-intro.html
snowflake_docs/substr_0_0.txt
/ 1. General Manipulation 34. Case Conversion 38. Regular Expression Matching 48. Other Matching/Comparison 66. Compression/Decompression 70. Encoding/Decoding 81. Cryptographic/Checksum 93. Hash (Non-cryptographic) 96. Co...
snowflake_docs/is_0_0.txt
/ 1. JSON and XML Parsing 9. Array/Object Creation and Manipulation 43. Map Creation and Manipulation 51. Extraction 58. Conversion/Casting 82. Type Predicates Categories: semistructured) (Type Predicates)
snowflake_docs/min_by_5_0.txt
Usage Notes ¶ * The function ignores NULL values in ` _ col_containing_mininum _ ` . * If all values in ` _ col_containing_mininum _ ` are NULL, the function returns NULL (regardless of whether the optional ` _ maximum_number_of_values_to_return _ ` argument is specified).
snowflake_docs/system_pipe_force_resume_0_0.txt
/ 1. Control 29. Information 90. Query Information SYSTEM$PIPE_FORCE_RESUME Categories:
snowflake_docs/copy_history_2_0.txt
Syntax ¶ COPY_HISTORY( TABLE_NAME => '<string>' , START_TIME => <constant_expr> [, END_TIME => <constant_expr> ] ) Copy
snowflake_docs/match_recognize_8_0.txt
label-match-recognize-introduction- partitioning-ordering) .
snowflake_docs/object_construct_keep_null_6_0.txt
Examples ¶ This example shows the difference between OBJECT_CONSTRUCT and OBJECT_CONSTRUCT_KEEP_NULL: > > SELECT OBJECT_CONSTRUCT('key_1', 'one', 'key_2', NULL) AS > WITHOUT_KEEP_NULL, > OBJECT_CONSTRUCT_KEEP_NULL('key_1', 'one', 'key_2', NULL) AS > KEEP_NULL_1, > OBJECT_CONSTRUCT_KEEP_NULL...
snowflake_docs/revoke-application-role_3_0.txt
Parameters ¶ ` _ name _ ` Specifies the identifier for the application role to revoke. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive. ` FROM ROLE _ parent_role_name _ ` Revokes the applic...
snowflake_docs/auto_refresh_registration_history_4_0.txt
Usage Notes ¶ * Returns results only for the ACCOUNTADMIN role or any role that has been explicitly granted the MONITOR USAGE global privilege.
snowflake_docs/hll_combine_1_0.txt
HLL_COMBINE ¶ Combines (merges) input states into a single output state. horizontal partitions of the same table, producing an algorithm state for each table partition. These states can later be combined using HLL_COMBINE , producing the same output state as a single run of [ HLL_ACCUMULATE See also:
snowflake_docs/snowflake-db-classes_0_0.txt
/
snowflake_docs/system_get_job_status_4_0.txt
Arguments ¶ **Required:** ` _ job_uuid _ ` Snowflake-assigned UUID of the job. See [ Usage Notes in the EXECUTE SERVICE instructions on finding the UUID. **Optional:** ` _ timeout_secs _ ` Number of seconds to wait for the job to reach a terminal state (DONE or FAILED) before returning the status. If the job does ...
snowflake_docs/serverless_task_history_4_0.txt
Arguments ¶ All of the arguments are optional. ` DATE_RANGE_START => _ constant_expr _ ` , . ` DATE_RANGE_END => _ constant_expr _ ` Date/time range of the usage window: ` TASK_NAME => _ string _ ` The name of the task to retrieve usage history for. Only the usage data for the specified task is returned. Not...
snowflake_docs/parse_url_8_0.txt
NOFRAGMENT', 1) | > |----------------------------------------------------------| > | { | > | "error": "scheme not specified" | > | } | > +---------------------------...
snowflake_docs/create-procedure_1_0.txt
CREATE PROCEDURE ¶ procedure/stored-procedures-usage) . A procedure can be written in one of the following languages: Note When you want to create and call a procedure that is anonymous (rather than anonymous procedure does not require a role with CREATE PROCEDURE schema privileges. See also:
snowflake_docs/external_table_files_3_0.txt
Arguments ¶ **Required:** ` TABLE_NAME => ' _ string _ ' ` A string specifying an external table name.
snowflake_docs/create-application-role_3_0.txt
Syntax ¶ CREATE [ OR REPLACE ] APPLICATION ROLE [ IF NOT EXISTS ] <name> [ COMMENT = '<string_literal>' ] Copy
snowflake_docs/collation_26_0.txt
Differences With Sequences of Code Points Representing a Single Character ¶ In cases where a sequence of code points represents a single character, the ` ci ` collation specification recognizes that the sequence represents a single character and does not match individual code points in the sequence. For example, the...
snowflake_docs/equal_null_2_0.txt
Syntax ¶ EQUAL_NULL( <expr1> , <expr2> ) Copy