id stringlengths 16 145 | text stringlengths 1 179k | title stringclasses 1
value |
|---|---|---|
snowflake_docs/applicable_roles_2_0.txt | Columns ¶
Column Name
|
Data Type
|
Description
---|---|---
GRANTEE
|
TEXT
|
Role or user to whom the privilege is granted
ROLE_NAME
|
TEXT
|
Name of the role
ROLE_OWNER
|
TEXT
|
Owner of the role
IS_GRANTABLE
|
TEXT
|
Whether this role can be granted to others
| |
snowflake_docs/map_pick_3_0.txt | Arguments ¶
` _ map _ `
The input map.
` _ key1 _ , _ key2 _ `
One or more keys that identify the key-value pairs to be included in the
returned map.
` _ array _ `
An array of keys that identify the key-value pairs to be included in the
returned map. You can specify a semi-structured ARRAY or a structured ARRAY... | |
snowflake_docs/system_last_change_commit_time_6_0.txt | Examples ¶
CALL SYSTEM$LAST_CHANGE_COMMIT_TIME('mytable');
+--------------------------------+
| SYSTEM$LAST_CHANGE_COMMIT_TIME |
|--------------------------------|
| 1661920053987000000 |
+--------------------------------+
Copy
SELECT SYSTEM$LAST_CHANGE_COMMIT_TIME('mytable');
... | |
snowflake_docs/create-stage_25_0.txt | Usage notes ¶
Important
manage.html | |
snowflake_docs/current_statement_2_0.txt | Syntax ¶
CURRENT_STATEMENT()
Copy
| |
snowflake_docs/create-share_7_0.txt | label-security-custom-role) .
For general information about roles and privilege grants for performing SQL
overview.html | |
snowflake_docs/boolnot_1_0.txt | BOOLNOT ¶
Computes the Boolean NOT of a single numeric expression. In accordance with
Boolean semantics:
* Non-zero values (including negative numbers) are regarded as True.
* Zero values are regarded as False.
As a result, the function returns:
* ` True ` if the expression is zero.
* ` False ` if the e... | |
snowflake_docs/get_presigned_url_6_0.txt | Usage notes ¶
* This SQL function returns a value for any role that has the following privilege on the stage:
External stage :
USAGE
Internal stage :
READ
* If files downloaded from an internal stage are corrupted, verify with the stage creator that ` ENCRYPTION = (TYPE = 'SNOWFLAKE_SSE') ` is set for th... | |
snowflake_docs/external_table_files_1_0.txt | EXTERNAL_TABLE_FILES ¶
This table function can be used to query information about the staged data
guide/tables-external) .
| |
snowflake_docs/create-application_1_0.txt | CREATE APPLICATION ¶
Available
This feature is not supported on Google Cloud Platform.
Creates a new application object using an application package or listing. This
command is used by providers to test an application package before publishing
a Snowflake Native App.
guide/native-apps/creating-setup-script) of the a... | |
snowflake_docs/minhash_1_0.txt | MINHASH ¶
Returns a MinHash state containing an array of size ` _ k _ ` constructed by
applying ` _ k _ ` number of different hash functions to the input rows and
keeping the minimum of each hash function. This MinHash state can then be
estimate the similarity with one or more other MinHash states.
For more inform... | |
snowflake_docs/st_asewkt_2_0.txt | Syntax ¶
ST_ASEWKT( <geography_or_geometry_expression> )
Copy
| |
snowflake_docs/space_3_0.txt | Arguments ¶
` _ n _ `
The number of blank spaces used to build the string.
| |
snowflake_docs/drop-alert_1_0.txt | DROP ALERT ¶
See also:
| |
snowflake_docs/arrays_overlap_1_0.txt | ARRAYS_OVERLAP ¶
Compares whether two arrays have at least one element in common. Returns TRUE
if there is at least one element in common; otherwise returns FALSE. The
function is NULL-safe, meaning it treats NULLs as known values for comparing
equality.
See also:
| |
snowflake_docs/use-database_0_0.txt | /
1. Parameters
4. Context
10. Variables
14. Queries
1. Database
9. Schema
17. Share
| |
snowflake_docs/execute-immediate-from_10_0.txt | Troubleshooting EXECUTE IMMEDIATE FROM Errors ¶
This section contains some common errors that result from an EXECUTE IMMEDIATE
FROM statement and how you can resolve them.
* File Errors
* Stage Errors
* Access Control Errors
| |
snowflake_docs/alter-table-event-table_6_0.txt | Search Optimization Actions ( ` searchOptimizationAction ` ) ¶
` ADD SEARCH OPTIMIZATION `
for the entire event table or, if you specify the optional ON clause, for
specific columns.
Note:
* If you try to add search optimization on a materialized view, Snowflake returns an error message.
The ON clause is part... | |
snowflake_docs/iff_1_0.txt | IFF ¶
only allows a single condition.
If ` _ condition _ ` evaluates to TRUE, returns ` _ expr1 _ ` , otherwise
returns ` _ expr2 _ ` .
| |
snowflake_docs/concat_5_0.txt | Usage Notes ¶
| |
snowflake_docs/regexp_instr_4_0.txt | label-regexp-parameters-argument) documentation.
Default: ` c `
Note
By default, REGEXP_INSTR returns the begin or end character offset for the
entire matching part of the subject. However, if the ` e ` (for “extract”)
parameter is specified, REGEXP_INSTR returns the begin or end character offset
for the part of the ... | |
snowflake_docs/get_query_operator_stats_17_0.txt | Examples ¶
| |
snowflake_docs/array_intersection_6_2.txt | |
> | | "b": 2 | "c": 3 |
> | |
> | | }, | }, |
> | |
> | | 1, | 3, |
> | |
> | | 2 | 4 |
> | ... | |
snowflake_docs/grant-database-role_1_0.txt | GRANT DATABASE ROLE ¶
Assigns a database role to an [ account role or another database role
overview-role-types) .
This action creates a “parent-child” relationship between the database role
and the role it is granted to (also referred to as a _role hierarchy_ ).
Note that database roles cannot be granted directly t... | |
snowflake_docs/result_scan_10_0.txt | Example with Duplicate Column Names ¶
The following example shows that RESULT_SCAN effectively references alternate
column names when there are duplicate column names in the original query:
> Create two tables that have at least one column with the same name:
>
>>
>> CREATE TABLE employees (id INT);
>>
>>
>> C... | |
snowflake_docs/st_isvalid_1_0.txt | ST_ISVALID ¶
Returns TRUE if the specified GEOGRAPHY or GEOMETRY object represents a [
handling-intro) .
| |
snowflake_docs/parse_ip_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/percentile_cont_0_0.txt | /
1. General
26. Bitwise
30. Boolean
34. Hash
36. Semi-Structured
39. Linear Regression
49. Statistics and Probability
52. Count Distinct Values
60. Cardinality Estimation
68. Similarity Estimation
73... | |
snowflake_docs/create-storage-integration_2_0.txt | Syntax ¶
CREATE [ OR REPLACE ] STORAGE INTEGRATION [IF NOT EXISTS]
<name>
TYPE = EXTERNAL_STAGE
cloudProviderParams
ENABLED = { TRUE | FALSE }
STORAGE_ALLOWED_LOCATIONS = ('<cloud>://<bucket>/<path>/' [ , '<cloud>://<bucket>/<path>/' ... ] )
[ STORAGE_BLOCKED_LOCATIONS = ('<cl... | |
snowflake_docs/drop-iceberg-table_4_0.txt | Access control requirements ¶
access-control-overview-roles) used to execute this SQL command must have the
overview.html | |
snowflake_docs/create-role_4_0.txt | Optional parameters ¶
` COMMENT = ' _ string_literal _ ' `
Specifies a comment for the role.
Default: No value
` TAG ( _ tag_name _ = ' _ tag_value _ ' [ , _ tag_name _ = ' _
tag_value _ ' , ... ] ) `
string value.
The tag value is always a string, and the maximum number of characters for the
... | |
snowflake_docs/drop-authentication-policy_6_0.txt | label-security-custom-role) .
For general information about roles and privilege grants for performing SQL
overview.html | |
snowflake_docs/drop-resource-monitor_5_0.txt | Examples ¶
Drop resource monitor ` my_rm ` , but don’t raise an error if the resource
monitor doesn’t exist:
DROP RESOURCE MONITOR IF EXISTS my_rm;
Copy
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this page
1. Syntax
2. Parameters
3. Usage Notes
4. Examples
Language : **English*... | |
snowflake_docs/drop-masking-policy_9_0.txt | Example ¶
DROP MASKING POLICY ssn_mask;
Copy
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this page
1. Syntax
2. Parameters
3. Access control requirements
4. Usage notes
5. Example
Language : **English** | |
snowflake_docs/create-materialized-view_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
CREATE MATERIALIZED VIEW
| |
snowflake_docs/drop-view_3_0.txt | Parameters ¶
` _ name _ `
Specifies the identifier for the view to drop. If the identifier contains
spaces, special characters, or mixed-case characters, the entire string must
be enclosed in double quotes. Identifiers enclosed in double quotes are also
case-sensitive.
If the view identifier is not fully-qualified ... | |
snowflake_docs/bitmap_count_4_0.txt | Returns ¶
The function returns the number of distinct values in a column, as represented
by the bits set in the input bitmap.
| |
snowflake_docs/show-alerts_4_0.txt | Output ¶
The command output provides alert properties and metadata in the following
columns:
Column
|
Description
---|---
` created_on `
|
Date and time when the alert was created.
` name `
|
Name of the alert.
` database_name `
|
Database in which the alert is stored.
` schema_name `
|
Schema in which... | |
snowflake_docs/with_4_0.txt | Usage Notes ¶
| |
snowflake_docs/to_geography_4_0.txt | Returns ¶
.
| |
snowflake_docs/systimestamp_3_0.txt | Arguments ¶
None. This function must be called with parentheses.
| |
snowflake_docs/lock_wait_history_1_0.txt | LOCK_WAIT_HISTORY View ¶
This Account Usage view includes the history of [ transactions
analyzing-blocked-transactions) .
| |
snowflake_docs/median_6_0.txt | Examples ¶
This shows how to use the function.
> Create an empty table.
>
>>
>> CREATE OR REPLACE TABLE aggr(k int, v decimal(10,2));
>>
>>
>> Copy
>
> Get the ` MEDIAN ` value for column v. The function returns NULL because
> there are no rows.
>
>>
>> SELECT MEDIAN (v) FROM aggr;
>> +------------+
>... | |
snowflake_docs/strtok_split_to_table_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/h3_coverage_strings_5_0.txt | Usage Notes ¶
* A cell is included in the result set if its boundary intersects the input shape.
| |
snowflake_docs/auto_refresh_registration_history_2_0.txt | Syntax ¶
AUTO_REFRESH_REGISTRATION_HISTORY(
[ DATE_RANGE_START => <constant_expr> ]
[, DATE_RANGE_END => <constant_expr> ]
[, OBJECT_TYPE => '<string>' [, OBJECT_NAME => '<string>'] ])
Copy
| |
snowflake_docs/notification_history_3_0.txt | Arguments ¶
All the arguments are optional.
` START_TIME=> _ constant_expr _ ` , . ` END_TIME=> _ constant_expr _ `
Time range (in TIMESTAMP_LTZ format) when the notification is sent out.
* If ` START_TIME ` is not specified, the range starts 24 hours prior to the ` END_TIME ` .
The maximum time range is 14... | |
snowflake_docs/generator_4_0.txt | Examples ¶
Note
These examples generate sequences that can have gaps. For examples that
This example uses the GENERATOR function to generate 10 rows. The content of
the rows is determined by the functions in the projection clause:
This example includes an optional “seed” for the RANDOM() function so that the
output ... | |
snowflake_docs/get_notification_integration_name_4_0.txt | Access Control Requirements ¶
* The following minimum privileges and roles are required to view results for _custom budgets_ :
* A role granted the USAGE privilege on the database and schema that contains the budget instance.
* The following role is required to view results for the _account budget_ :
| |
snowflake_docs/rpad_2_0.txt | Syntax ¶
RPAD(<base>, <length_expr> [, <pad>])
Copy
| |
snowflake_docs/create-security-integration-oauth-snowflake_14_0.txt | Examples ¶
| |
snowflake_docs/create-warehouse_7_0.txt | Optional Parameters ( ` objectParams ` ) ¶
` MAX_CONCURRENCY_LEVEL = _ num _ `
Object parameter that specifies the concurrency level for SQL statements (i.e.
queries and DML) executed by a warehouse cluster.
For a detailed description of this parameter, see [ MAX_CONCURRENCY_LEVEL
` STATEMENT_QUEUED_TIMEOUT_IN_S... | |
snowflake_docs/copy-into-table_17_0.txt | Examples ¶
For examples of data loading transformations, see [ Transforming data during a
| |
snowflake_docs/system_whitelist_1_0.txt | SYSTEM$WHITELIST — _Deprecated_ ¶
instead.
Returns hostnames and port numbers to add to your firewall’s allowed list so
that you can access Snowflake from behind your firewall. The output of this
Typically, Snowflake customers use a firewall to prevent unauthorized access.
By default, your firewall might block access... | |
snowflake_docs/operators-subquery_12_0.txt | Usage Notes ¶
* IN is shorthand for ` = ANY ` , and is subject to the same restrictions as ANY subqueries.
* NOT IN is shorthand for ` != ALL ` , and is subject to the same restrictions as ALL subqueries.
| |
snowflake_docs/approx_top_k_1_0.txt | APPROX_TOP_K ¶
Uses Space-Saving to return an approximation of the most frequent values in
the input, along with their approximate frequencies.
The output is a JSON array of arrays. In the inner arrays, the first entry is
a value in the input, and the second entry corresponds to its estimated
frequency in the input.... | |
snowflake_docs/drop-database-role_4_0.txt | Usage notes ¶
* Dropped database roles cannot be recovered; they must be recreated.
* If a database role has a future privilege as a grantor or grantee, the database role can only be dropped by a user with a role that has the MANAGE GRANTS privilege.
* All current and future grants that name the database rol... | |
snowflake_docs/sessions_0_0.txt | /
Schema:
| |
snowflake_docs/localtimestamp_2_0.txt | Syntax ¶
LOCALTIMESTAMP( [ <fract_sec_precision> ] )
LOCALTIMESTAMP
Copy
| |
snowflake_docs/extract_semantic_categories_8_0.txt | Examples ¶
Extract the semantic and privacy categories for the ` my_db.my_schema.hr_data
` table using the default ( ` 10000 ` ) for the number of rows to scan:
>
> USE ROLE data_engineer;
>
> USE WAREHOUSE classification_wh;
>
> SELECT EXTRACT_SEMANTIC_CATEGORIES('my_db.my_schema.hr_data');
>
>
>... | |
snowflake_docs/alter-database-role_2_0.txt | Syntax ¶
ALTER DATABASE ROLE [ IF EXISTS ] <name> RENAME TO <new_name>
ALTER DATABASE ROLE [ IF EXISTS ] <name> SET COMMENT = '<string_literal>'
ALTER DATABASE ROLE [ IF EXISTS ] <name> UNSET COMMENT
ALTER DATABASE ROLE [ IF EXISTS ] <name> SET TAG <tag_name> = '<tag_value>' [ , <tag_name> = '<tag_va... | |
snowflake_docs/hash_agg_1_0.txt | HASH_AGG ¶
Returns an aggregate signed 64-bit hash value over the (unordered) set of
input rows. HASH_AGG never returns NULL, even if no input is provided. Empty
input “hashes” to ` 0 ` .
One use for aggregate hash functions is to detect changes to a set of values
without comparing the individual old and new values... | |
snowflake_docs/system_estimate_search_optimization_costs_0_0.txt | /
1. Control
29. Information
90. Query Information
SYSTEM$ESTIMATE_SEARCH_OPTIMIZATION_COSTS
Categories:
| |
snowflake_docs/create-schema_0_0.txt | /
1. Database
9. Schema
17. Share
database) CREATE SCHEMA
| |
snowflake_docs/qualify_3_0.txt | Usage Notes ¶
* The QUALIFY clause requires at least one window function to be specified in at least one of the following clauses of the SELECT statement:
* The SELECT column list.
* The filter predicate of the QUALIFY clause.
Examples of each of these are shown in the Examples section below.
* Expres... | |
snowflake_docs/create-table_22_0.txt | label-security-custom-role) .
For general information about roles and privilege grants for performing SQL
overview.html | |
snowflake_docs/array_max_7_0.txt | label-array-constant) :
SELECT ARRAY_MAX([20, 0, NULL, 10, NULL]);
Copy
+------------------------------------+
| ARRAY_MAX([20, 0, NULL, 10, NULL]) |
|------------------------------------|
| 20 |
+------------------------------------+
The following example demonst... | |
snowflake_docs/alter-database-role_5_0.txt | label-access-control-overview-privileges) at a minimum:
Privilege
|
Object
|
Notes
---|---|---
OWNERSHIP
|
Database role
|
Only the database role owner (i.e. the database role with the OWNERSHIP
privilege on the database role), or a higher role, can execute this command.
The owner role does not inherit any permissi... | |
snowflake_docs/to_geography_2_0.txt | Syntax ¶
Use one of the following:
TO_GEOGRAPHY( <varchar_expression> [ , <allow_invalid> ] )
TO_GEOGRAPHY( <binary_expression> [ , <allow_invalid> ] )
TO_GEOGRAPHY( <variant_expression> [ , <allow_invalid> ] )
TO_GEOGRAPHY( <geometry_expression> [ , <allow_invalid> ] )
Copy
| |
snowflake_docs/listing-events-daily_2_0.txt | Columns ¶
Column Name
|
Data Type
|
Description
---|---|---
EVENT_DATE
|
DATE
|
Date of the event.
EXCHANGE_NAME
|
VARCHAR
|
Name of the data exchange the listing belongs to, such as the Snowflake
Marketplace.
EVENT_TYPE
|
VARCHAR
|
One of:
* ` GET ` : Consumer creates a database for a free listing, or in... | |
snowflake_docs/columns_5_0.txt | Usage Notes ¶
* The view only displays objects for which the current role for the session has been granted access privileges. The view does not honor the MANAGE GRANTS privilege and consequently may show less information compared to a SHOW command when both are executed by a user who holds the MANAGE GRANTS privil... | |
snowflake_docs/identifiers-syntax_0_0.txt | /
| |
snowflake_docs/st_xmin_2_0.txt | Syntax ¶
ST_XMIN( <geography_or_geometry_expression> )
Copy
| |
snowflake_docs/generate_column_description_1_0.txt | GENERATE_COLUMN_DESCRIPTION ¶
Generates a list of columns from a set of staged files that contain semi-
The output from this function can be used as input when manually creating a
table, external table, or view (using the appropriate [ CREATE <object>
USING TEMPLATE clause can be used to create a new table with the ... | |
snowflake_docs/current_account_1_0.txt | CURRENT_ACCOUNT ¶
identifier.html | |
snowflake_docs/listagg_12_0.txt | 000000136, Clerk | |
snowflake_docs/alter-application-package-release-directive_2_0.txt | Syntax ¶
ALTER APPLICATION PACKAGE <name> MODIFY RELEASE DIRECTIVE <release_directive>
VERSION = <version_identifier>
PATCH = <patch_num>
ALTER APPLICATION PACKAGE <name> SET DEFAULT RELEASE DIRECTIVE
VERSION = <version_identifier>
PATCH = <patch_num>
ALTER APPLICATION PACKAGE <na... | |
snowflake_docs/row_access_policies_4_0.txt | Example ¶
Obtain all of the row access policies created in your account, ordered by the
timestamp on which the policy was created:
>
> select policy_name, policy_signature, created
> from row_access_policies
> order by created
> ;
>
>
> Copy
Was this page helpful?
Yes No
Inc. All Rights Reserved ... | |
snowflake_docs/task_dependents_0_0.txt | /
1. Data Loading
4. Data Generation
6. Data Conversion
9. ML-Powered Analysis
11. Object Modeling
13. Semi-Structured Queries
15. Query Results
17. Query Profile
19. User Login
22. Queries
26. Wareho... | |
snowflake_docs/system_last_change_commit_time_1_0.txt | SYSTEM$LAST_CHANGE_COMMIT_TIME ¶
Returns a token that can be used to detect whether a database table or view
changed between two calls to the function. If the token returned by a call is
different from the token returned by a separate call, then the table or view
changed between the two calls, typically due to a DML... | |
snowflake_docs/get_spending_limit_1_0.txt | <budget_name>!GET_SPENDING_LIMIT ¶
guide/intro-editions) .
This feature is currently not available for [ Trial Accounts
See also:
| |
snowflake_docs/parameters_58_0.txt | LOCK_TIMEOUT ¶
Type :
Session — Can be set for Account » User » Session
Data Type :
Number
Description :
Number of seconds to wait while trying to lock a resource, before timing out
and aborting the statement.
Values :
` 0 ` to any number (i.e. no limit) A value of ` 0 ` disables lock waiting
(i.e. the stateme... | |
snowflake_docs/localtimestamp_4_0.txt | Returns ¶
Returns the current system time. The data type of the returned value is [
variations) .
| |
snowflake_docs/policy_context_5_0.txt | Examples ¶
Simulate the effect of the PUBLIC system role querying the table ` empl_info
` :
>
> execute using policy_context(current_role => 'PUBLIC') as select * from
> empl_info;
>
>
> Copy
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this page
1. Syntax
2. Arguments
3. Usage notes ... | |
snowflake_docs/operators-arithmetic_11_0.txt | Bitwise Operations ¶
The list of supported bitwise arithmetic operations is available at [
Note:
* For numeric values, bitwise operations only operate on the leading digits in the input. The output always has a scale of zero.
* For binary bitwise operations, the output has the same number of leading digits as t... | |
snowflake_docs/grant-privilege_14_0.txt | label-procedure-function-
> name-overloading) .
Grant the privilege to create materialized views in the specified schema:
>
> GRANT CREATE MATERIALIZED VIEW ON SCHEMA mydb.myschema TO ROLE myrole;
>
>
> Copy
Grant the SELECT and INSERT privileges on all future tables created in the `
mydb.myschema ` schema to ... | |
snowflake_docs/revoke-application-role_5_0.txt | Examples ¶
REVOKE APPLICATION ROLE app_role FROM APPLICATION ROLE other_role;
Copy
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this page
1. Syntax
2. Parameters
3. Usage notes
4. Examples
Related content
Language : **English** | |
snowflake_docs/join-lateral_6_0.txt | Example of using LATERAL with FLATTEN() ¶
This example shows how a lateral join can use the inline view returned by `
FLATTEN ` :
SELECT * FROM table1, LATERAL FLATTEN(...);
Copy
First, update the employee table to include ARRAY data that FLATTEN can
operate on:
>
> UPDATE employees SET project_names = ARRA... | |
snowflake_docs/as_array_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/drop-network-rule_2_0.txt | Syntax ¶
DROP NETWORK RULE [ IF EXISTS ] <name>
Copy
| |
snowflake_docs/next_day_0_0.txt | /
1. Construction
5. Extraction
29. Addition & Subtraction
38. Truncation
42. Conversion
57. Time Zone
59. Alerts
date-time) NEXT_DAY
Categories:
| |
snowflake_docs/system_get_cmk_akv_consent_url_4_0.txt | Usage notes ¶
* This function is for use in Snowflake accounts on Microsoft Azure only.
* Only account administrators (i.e. users with the ACCOUNTADMIN role) or a role that is granted the global MONITOR SECURITY privilege can call this function.
| |
snowflake_docs/sql-format-models_24_1.txt | |
> +--------------------------+------------------+-----------+
>
>
> Copy
This shows how to include literals in the output. The literal portions are
enclosed within double quotes (which, in turn, are inside the single quotes
that delimit the string).
>
> select to_char(12, '">"99"<"');
>
>
> Copy
The out... | |
snowflake_docs/array_intersection_3_0.txt | Arguments ¶
` _ array1 _ `
An array that contains elements to be compared.
` _ array2 _ `
An array that contains elements to be compared.
| |
snowflake_docs/drop-password-policy_6_0.txt | label-access-control-overview-privileges) at a minimum:
Privilege
|
Object
|
Notes
---|---|---
OWNERSHIP
|
Password policy
|
OWNERSHIP is a special privilege on an object that is automatically granted to
the role that created the object, but can also be transferred using the [
role (or any role with the MANAGE GRAN... | |
snowflake_docs/drop-alert_0_0.txt | /
| |
snowflake_docs/associate_semantic_category_tags_1_0.txt | ASSOCIATE_SEMANTIC_CATEGORY_TAGS ¶
This feature requires Enterprise Edition or higher. To inquire about
upgrading, please contact [ Snowflake Support
Snowflake-Lodge) .
Takes the results of the EXTRACT_SEMANTIC_CATEGORIES function on a table/view
and applies the results as tags on the supported columns in the table/... | |
snowflake_docs/delete_category_3_0.txt | Syntax ¶
CALL <custom_classifier>!DELETE_CATEGORY( '<semantic_category>' )
Copy
| |
snowflake_docs/commands-account_0_0.txt | /
1. Organization
7. Managed Accounts
11. Account Parameters & Functions
commands) Accounts
| |
snowflake_docs/system_block_internal_stages_public_access_4_0.txt | Arguments ¶
None.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.