id stringlengths 16 145 | text stringlengths 1 179k | title stringclasses 1
value |
|---|---|---|
snowflake_docs/drop-compute-pool_5_0.txt | label-access-control-overview-privileges) at a minimum:
Privilege
|
Object
|
Notes
---|---|---
OWNERSHIP
|
Compute pool
|
For instructions on creating a custom role with a specified set of privileges,
configure.html | |
snowflake_docs/create-session-policy_6_0.txt | Access control requirements ¶
access-control-overview-roles) used to execute this SQL command must have the
overview.html | |
snowflake_docs/set_email_notifications_5_0.txt | Returns ¶
The email integration is updated.
| |
snowflake_docs/create-task_13_0.txt | label-cloud-services-credit-usage) accumulates no
cloud services charges.
` 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
tag value is 256.
For information about speci... | |
snowflake_docs/validate_pipe_load_6_0.txt | Examples ¶
Validate any loads for the ` mypipe ` pipe within the previous hour:
>
> select * from table(validate_pipe_load(
> pipe_name=>'MY_DB.PUBLIC.MYPIPE',
> start_time=>dateadd(hour, -1, current_timestamp())));
>
>
> Copy
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this pag... | |
snowflake_docs/json_extract_path_text_3_0.txt | Arguments ¶
` _ column_identifier _ `
The name of the column with the data that you want to extract.
` _ path_name _ `
A string that contains the path to the element that you want to extract.
| |
snowflake_docs/data-types-logical_9_0.txt | Explicit Conversion ¶
Boolean values can be cast explicitly to string or numeric values.
String Conversion :
* TRUE is converted to ‘true’.
* FALSE is converted to ‘false’.
Numeric Conversion :
* TRUE is converted to ` 1 ` .
* FALSE is converted to ` 0 ` .
| |
snowflake_docs/check_json_2_0.txt | Syntax ¶
CHECK_JSON( <string_or_variant_expr> )
Copy
| |
snowflake_docs/system_reference_6_0.txt | Usage Notes ¶
The ` _ object_type _ ` argument must match the type of the object specified
by ` _ object_identifier _ ` .
| |
snowflake_docs/grant-privilege-application-role_6_0.txt | label-procedure-function-name-overloading) .
| |
snowflake_docs/listing-access-history_9_0.txt | ,
"columnName": "column3_name"
},
{
"columnId": | |
snowflake_docs/h3_cell_to_boundary_4_0.txt | Arguments ¶
` _ cell_id _ `
An INTEGER that represents the H3 cell ID ( [ index
represents the cell ID in hexadecimal format.
| |
snowflake_docs/aggregate_query_history_2_1.txt | ent in the warehouse queue, waiting for the warehouse
compute resources to provision, due to warehouse creation, resume, or resize.
QUEUED_REPAIR_TIME
|
OBJECT
|
Time (in milliseconds) spent in the warehouse queue, waiting for compute
resources in the warehouse to be repaired.
QUEUED_OVERLOAD_TIME
|
OBJECT
|
Time (... | |
snowflake_docs/row_number_5_0.txt | Examples ¶
Show farmers in descending order by amount of corn produced, and assigning row
numbers in that order (the farmer who produces the most corn will have row
number 1).
>
> SELECT state, bushels_produced, ROW_NUMBER()
> OVER (ORDER BY bushels_produced DESC)
> FROM corn_production;
>
> +-... | |
snowflake_docs/st_perimeter_4_0.txt | Returns ¶
Returns a REAL value, which represents the length:
* For GEOGRAPHY objects, the length is in meters.
* For GEOMETRY objects, the length is computed with the same unit used to define the coordinates.
| |
snowflake_docs/st_aswkb_8_0.txt | GEOGRAPHY Examples ¶
The following example demonstrates the ST_ASWKB function. For the WKB output,
binary-output-format) parameter is set to ` HEX ` (the default value for the
parameter).
>
> create table geospatial_table (id INTEGER, g GEOGRAPHY);
> insert into geospatial_table values
> (1, 'POINT(... | |
snowflake_docs/rate_sheet_daily_legacy_1_0.txt | RATE_SHEET_DAILY View (Legacy) ¶
The RATE_SHEET_DAILY view in the ORGANIZATION_USAGE schema returns the
effective rates used for calculating usage in the organization currency based
on credits used for all Snowflake accounts in your organization.
Important
This topic describes the legacy version of the RATE_SHEET_DA... | |
snowflake_docs/last_successful_scheduled_time_3_0.txt | Syntax ¶
SNOWFLAKE.ALERT.LAST_SUCCESSFUL_SCHEDULED_TIME()
Copy
| |
snowflake_docs/applicable_roles_3_0.txt | Usage notes ¶
The view does not display any information about [ database roles
control-considerations-database-roles) .
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this page
1. Columns
2. Usage notes
Language : **English** | |
snowflake_docs/st_makepolygon_6_0.txt | Examples ¶
| |
snowflake_docs/floor_4_0.txt | Returns ¶
The data type of the returned value is NUMBER(precision, scale).
If the input scale was greater than or equal to zero, then the output scale
generally matches the input scale.
If the input scale was negative, then the output scale is 0.
For example:
* The data type returned by FLOOR(3.14, 1) is NUMBER(4,... | |
snowflake_docs/revoke-role_0_0.txt | /
1. User Management
7. Database Role Management
16. Account-level Role Management
25. Privilege Management
REVOKE ROLE
| |
snowflake_docs/grant-database-role-share_3_0.txt | Parameters ¶
` _ name _ `
Specifies the identifier (i.e. name) for the database role; must be unique in
the database in which the role is created.
The identifier must start with an alphabetic character and cannot contain
spaces or special characters unless the entire identifier string is enclosed
in double quotes (... | |
snowflake_docs/approx_percentile_1_0.txt | APPROX_PERCENTILE ¶
Returns an approximated value for the desired percentile (i.e. if column ` c
` has ` n ` numbers, then APPROX_PERCENTILE(c, p) returns a number such that
approximately ` n * p ` of the numbers in ` c ` are smaller than the
returned number).
This function uses an improved version of the t-Dig... | |
snowflake_docs/create-function_9_0.txt | All Languages ¶
` _ name _ ( [ _ arg_name _ _ arg_data_type _ [ DEFAULT _ default_value
_ ] ] [ , ... ] ) `
Specifies the identifier ( ` _ name _ ` ), any input arguments, and the
default values for any optional arguments for the UDF.
* For the identifier:
* For the input arguments:
* For ` ... | |
snowflake_docs/create-function_35_0.txt | label-security-custom-role) .
For general information about roles and privilege grants for performing SQL
overview.html | |
snowflake_docs/drop-connection_2_0.txt | Syntax ¶
DROP CONNECTION [ IF EXISTS ] <name>
Copy
| |
snowflake_docs/grant-role_7_0.txt | label-access-control-securable-objects) , see [ Overview of
| |
snowflake_docs/to_geometry_2_0.txt | label-data-types-geometry) .
See also:
| |
snowflake_docs/grant-privilege_4_0.txt | Optional parameters ¶
` FUTURE `
Specifies that privileges are granted on new (i.e. future) database or schema
objects of a specified type (e.g. tables or views) rather than existing
objects. Note that future grants can be revoked at any time using [ REVOKE
granted on existing objects are retained. For more informa... | |
snowflake_docs/drop-task_4_0.txt | Usage notes ¶
* A standalone task can be dropped by the task owner (i.e. the role that has the OWNERSHIP privilege on the task) or a higher role without first suspending the task.
* If a predecessor task in a task graph is dropped, then all former child tasks that identified this task as the predecessor become ... | |
snowflake_docs/system_classify_schema_6_0.txt | Usage notes ¶
* The specified schema name can contain up to 1000 table objects. If the schema contains more than 1000 table objects, Snowflake returns an error message.
* To unset a Classification system tag from a column, use an ALTER TABLE … MODIFY COLUMN … UNSET TAG statement.
| |
snowflake_docs/alter-table_17_0.txt | TYPE = ORC ¶
` TRIM_SPACE = TRUE | FALSE `
Use :
Data loading and external tables
Definition :
Boolean that specifies whether to remove leading and trailing white space from
strings.
For example, if your external database software encloses fields in quotes, but
inserts a leading space, Snowflake reads the lea... | |
snowflake_docs/stddev_4_0.txt | Returns ¶
The data type of the returned value is DOUBLE.
If all records inside a group are NULL, this function returns NULL.
| |
snowflake_docs/create-connection_1_0.txt | CREATE CONNECTION ¶
Requires Business Critical Edition (or higher). To inquire about upgrading,
please contact [ Snowflake Support
Snowflake-Lodge) .
Creates a new connection in the account. For more details, see [ Redirecting
See also:
| |
snowflake_docs/session_policies_1_0.txt | SESSION_POLICIES View ¶
guide/session-policies) in your account.
Each row in this view corresponds to a different session policy.
| |
snowflake_docs/nullif_4_0.txt | Returns ¶
The data type of the returned value is the data type of ` _ expr1 _ ` .
| |
snowflake_docs/infer_schema_1_0.txt | INFER_SCHEMA ¶
Automatically detects the file metadata schema in a set of staged data files
that contain semi-structured data and retrieves the column definitions.
builds on the INFER_SCHEMA function output to simplify the creation of new
tables, external tables, or views (using the appropriate [ CREATE <object>
exe... | |
snowflake_docs/st_coveredby_3_0.txt | Arguments ¶
` _ geography_expression_1 _ `
A GEOGRAPHY object that is not a GeometryCollection or FeatureCollection.
` _ geography_expression_2 _ `
A GEOGRAPHY object that is not a GeometryCollection or FeatureCollection.
` _ geometry_expression_1 _ `
A GEOMETRY object that is not a GeometryCollection or FeatureC... | |
snowflake_docs/show-session-policies_1_0.txt | SHOW SESSION POLICIES ¶
Session policies requires Enterprise Edition or higher. To inquire about
upgrading, please contact [ Snowflake Support
Snowflake-Lodge) .
Lists session policy information, including the creation date, database and
schema names, owner, and any available comments.
See also:
policies.html | |
snowflake_docs/system_verify_ext_oauth_token_4_0.txt | Output ¶
The function returns a JSON object stating the validation result with a
reason. The query result should never display the token itself. For example,
an invalid token should return a masked token in the result to ensure that
sensitive information is not exposed unnecessarily in Snowflake.
Column Name
|
Data ... | |
snowflake_docs/system_link_account_objects_by_name_1_0.txt | SYSTEM$LINK_ACCOUNT_OBJECTS_BY_NAME ¶
Requires Business Critical Edition (or higher). To inquire about upgrading,
please contact [ Snowflake Support
Snowflake-Lodge) .
Adds a global identifier to account objects in the target (current) account
that were created using scripts and that match objects with the same name... | |
snowflake_docs/approx_percentile_estimate_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/select_15_0.txt | Selecting All Columns Except One Column ¶
This example shows how to select all columns in ` employee_table ` except for
the ` department_id ` column:
SELECT * EXCLUDE department_id FROM employee_table;
Copy
+-------------+------------+------------+
| EMPLOYEE_ID | LAST_NAME | FIRST_NAME |
|-------... | |
snowflake_docs/metering_daily_history_2_0.txt | Columns ¶
Column Name
|
Data Type
|
Description
---|---|---
SERVICE_TYPE
|
TEXT
|
Type of service that is consuming credits, which can be one of the following:
USAGE_DATE
|
DATE
|
Date when the usage took place.
CREDITS_USED_COMPUTE
|
NUMBER
|
Number of credits billed for warehouses and serverless compute reso... | |
snowflake_docs/parameters_88_0.txt | STATEMENT_QUEUED_TIMEOUT_IN_SECONDS ¶
Type :
Session and Object (for warehouses)
Can be set for Account » User » Session; can also be set for individual
warehouses
Data Type :
Number
Description :
Amount of time, in seconds, a SQL statement (query, DDL, DML, etc.) remains
queued for a warehouse before it is can... | |
snowflake_docs/show-event-tables_6_0.txt | Examples ¶
Show all the event tables whose name starts with ` mylogs ` that you have
privileges to view in the ` tpch.public ` schema:
>
> SHOW EVENT TABLES LIKE 'mylogs%' IN tpch.public;
>
>
> Copy
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this page
1. Syntax
2. Parameters
3. Us... | |
snowflake_docs/st_azimuth_7_0.txt | GEOGRAPHY Examples ¶
The following example returns the azimuth in radians for an origin Point (0,
1) and a target Point (0, 0):
>
> SELECT ST_AZIMUTH(
> TO_GEOGRAPHY('POINT(0 1)'),
> TO_GEOGRAPHY('POINT(0 0)')
> );
> +---------------------------------+
> | ST_AZIMU... | |
snowflake_docs/is_object_1_0.txt | IS_OBJECT ¶
Returns TRUE if its VARIANT argument contains an OBJECT value.
See also:
| |
snowflake_docs/create-budget_4_0.txt | Optional Parameters ¶
` COMMENT = ' _ string_literal _ ' ` :
Specifies a comment for the budget.
| |
snowflake_docs/map_insert_6_0.txt | Examples ¶
Insert a third key-value pair into a map containing two key-value pairs:
SELECT MAP_INSERT({'a':1,'b':2}::MAP(VARCHAR,NUMBER),'c',3);
Copy
+------------------------------------------------------+
| MAP_INSERT({'A':1,'B':2}::MAP(VARCHAR,NUMBER),'C',3) |
|------------------------------------... | |
snowflake_docs/constraints-create_1_0.txt | Creating Constraints ¶
A constraint can be created at table creation using [ CREATE TABLE
* Single-column constraints can be created inline as part of the column definition.
* Multi-column constraints must be created in a separate, i.e. out-of-line, clause that specifies the columns in the constraint.
To creat... | |
snowflake_docs/st_makepoint_2_0.txt | Syntax ¶
ST_MAKEPOINT( <longitude> , <latitude> )
Copy
| |
snowflake_docs/array_construct_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) (Array/Object)
| |
snowflake_docs/show-hybrid-tables_1_0.txt | SHOW HYBRID TABLES ¶
Currently available only to accounts in select AWS regions, excluding trial
guide/tables-hybrid-limitations.html | |
snowflake_docs/show-projection-policies_4_0.txt | Parameters ¶
` LIKE ' _ pattern _ ' `
Optionally filters the command output by object name. The filter uses case-
insensitive pattern matching, with support for SQL wildcard characters ( ` %
` and ` _ ` ).
For example, the following patterns return the same results:
` ... LIKE '%testing%' ... `
` ... L... | |
snowflake_docs/open_3_0.txt | Usage Notes ¶
* The result set of a query can be thought of as a set of rows. Internally, opening a cursor executes the query, reads the rows, and positions an internal pointer to the first of the rows.
* Similarly, if a cursor is closed, and then the underlying table(s) are updated before it is re-opened, the ... | |
snowflake_docs/current_version_2_0.txt | Syntax ¶
CURRENT_VERSION()
Copy
| |
snowflake_docs/trim_5_0.txt | Collation Details ¶
Collation is supported when the optional second argument is omitted, or when
it contains only constant whitespace.
The collation specification of the returned value is the same as the collation
specification of the first argument.
| |
snowflake_docs/st_dwithin_6_0.txt | Examples ¶
This returns TRUE because the distance in meters between two points 1 degree
apart along the equator is less than 150,000 meters:
>
> SELECT ST_DWITHIN (ST_MAKEPOINT(0, 0), ST_MAKEPOINT(1, 0), 150000);
> +-------------------------------------------------------------+
> | ST_DWITHIN (ST_MAKEPOI... | |
snowflake_docs/decompress_string_3_0.txt | Arguments ¶
**Required:**
` _ input _ `
A ` BINARY ` value (or expression) with data that was compressed using one of
` _ method _ `
The compression method originally used to compress the ` _ input _ ` . See [
The ` DECOMPRESS_STRING ` method, unlike the ` COMPRESS ` method, does not
require you to specify the... | |
snowflake_docs/st_disjoint_1_0.txt | ST_DISJOINT ¶
geospatial.html | |
snowflake_docs/system_generate_saml_csr_1_0.txt | SYSTEM$GENERATE_SAML_CSR ¶
Generates a certificate signing request (CSR) with the subject set to the
security-integration-saml2) and can specify the ` DN ` to be used in the CSR.
| |
snowflake_docs/stage_directory_file_registration_history_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/session-variables_8_0.txt | Using Variables in SQL ¶
Variables can be used in Snowflake anywhere a literal constant is allowed,
except where noted in the documentation. To distinguish them from bind values
and column names, all variables must be prefixed with a ` $ ` sign.
For example:
>
> SET (MIN, MAX)=(40, 70);
>
> SELECT $MIN;
>... | |
snowflake_docs/bitmap_bucket_number_5_0.txt | Examples ¶
See [ Using Bitmaps to Compute Distinct Values for Hierarchical Aggregations
Was this page helpful?
Yes No
Inc. All Rights Reserved .
On this page
1. Syntax
2. Arguments
3. Returns
4. Examples
Language : **English** | |
snowflake_docs/h3_string_to_int_0_0.txt | /
1. Conversion, Input, Parsing
14. Conversion, Output, Formatting
23. Constructor
32. Accessor
44. Relationship and Measurement
61. Transformation
75. Utility
77. H3
geospatial) H3_STRING_TO_INT
Categories:
| |
snowflake_docs/desc-session-policy_8_0.txt | label-access-control-securable-objects) , see [ Overview of
For additional details on session policy DDL and privileges, see [ Managing
policy-mgmt) .
| |
snowflake_docs/translate-snowflake-cortex_1_0.txt | TRANSLATE (SNOWFLAKE.CORTEX) ¶
_Fully qualified name:_ SNOWFLAKE.CORTEX.TRANSLATE
cortex/llm-functions.html | |
snowflake_docs/sql-format-models_27_0.txt | -
> ` ).
>
>
> -- Create the table and insert data.
> create table format1 (v varchar, i integer);
> insert into format1 (v) values ('-101');
> insert into format1 (v) values ('102-');
> insert into format1 (v) values ('103');
>
> -- Try to convert varchar to integer without a
> -- for... | |
snowflake_docs/alter-table_29_0.txt | Changing the Order of Clustering Keys ¶
The following statement creates a table named ` t1 ` that clusters by the `
id ` and ` date ` columns:
CREATE OR REPLACE TABLE T1 (id NUMBER, date TIMESTAMP_NTZ, name STRING) CLUSTER BY (id, date);
Copy
SHOW TABLES LIKE 'T1';
Copy
-------------------------------... | |
snowflake_docs/contains_1_0.txt | CONTAINS ¶
Returns true if ` _ expr1 _ ` contains ` _ expr2 _ ` . Both expressions must
be text or binary expressions.
Tip
You can use the search optimization service to improve the performance of
queries that call this function. For details, see [ Search Optimization
| |
snowflake_docs/localtime_3_0.txt | Arguments ¶
None.
| |
snowflake_docs/use_2_0.txt | Syntax ¶
USE ROLE <name>
USE WAREHOUSE <name>
USE [ DATABASE ] <name>
USE [ SCHEMA ] [<db_name>.]<name>
Copy
For specific syntax, usage notes, and examples, see:
| |
snowflake_docs/create-masking-policy_10_0.txt | Usage notes ¶
* A given table or view column can be specified in either a masking policy signature or a row access policy signature. In other words, the same column cannot be specified in both a masking policy signature and a row access policy signature at the same time.
policy) .
* Regarding metadata:
Attenti... | |
snowflake_docs/conditional_change_event_1_0.txt | CONDITIONAL_CHANGE_EVENT ¶
Returns a window event number for each row within a window partition when the
value of the argument ` _ expr1 _ ` in the current row is different from the
value of ` _ expr1 _ ` in the previous row. The window event number starts
from 0 and is incremented by 1 to indicate the number of c... | |
snowflake_docs/create-external-function_3_0.txt | Required Parameters ¶
` _ name _ ` :
Specifies the identifier for the function.
The identifier can contain the schema name and database name, as well as the
function name.
The identifier does not need to be unique for the schema in which the function
is created because functions are identified and resolved by their... | |
snowflake_docs/create-warehouse_5_0.txt | Query Acceleration Properties ¶
This feature requires Enterprise Edition (or higher). To inquire about
upgrading, please contact [ Snowflake Support
Snowflake-Lodge) .
` ENABLE_QUERY_ACCELERATION = { TRUE | FALSE } `
guide/query-acceleration-service) for queries that rely on this warehouse for
compute resourc... | |
snowflake_docs/regr_syy_2_0.txt | Syntax ¶
**Aggregate function**
REGR_SYY(y, x)
Copy
**Window function**
REGR_SYY(y, x) ( [ PARTITION BY <expr3> ] )
Copy
| |
snowflake_docs/map_contains_key_3_0.txt | Arguments ¶
` _ key _ `
The key to find.
` _ map _ `
The map to be searched.
| |
snowflake_docs/alter-model-add-version_3_0.txt | Parameters ¶
` _ name _ `
Specifies the identifier of the model. If the identifier contains spaces,
special characters, or mixed-case characters, the entire identifier must be
enclosed in double quotes. Identifiers enclosed in double quotes are also
case-sensitive. For information on identifier syntax, see [ Identi... | |
snowflake_docs/st_disjoint_0_0.txt | /
1. Conversion, Input, Parsing
14. Conversion, Output, Formatting
23. Constructor
32. Accessor
44. Relationship and Measurement
61. Transformation
75. Utility
77. H3
geospatial) ST_DISJOINT
Categories:
| |
snowflake_docs/show-organization-accounts_0_0.txt | /
1. Organization
7. Managed Accounts
11. Account Parameters & Functions
ACCOUNTS
| |
snowflake_docs/drop-service_5_0.txt | label-access-control-overview-privileges) at a minimum:
Privilege
|
Object
|
Notes
---|---|---
OWNERSHIP
|
Service
|
Note that operating on any object in a schema also requires the USAGE
privilege on the parent database and schema.
For instructions on creating a custom role with a specified set of privileges,
con... | |
snowflake_docs/current_ip_address_3_0.txt | Arguments ¶
None.
| |
snowflake_docs/create-external-function_7_0.txt | label-access-control-overview-privileges) at a minimum:
Privilege
|
Object
|
Notes
---|---|---
CREATE EXTERNAL FUNCTION
|
Schema
|
Operating on functions also requires the USAGE privilege on the parent
database and schema.
Either OWNERSHIP or USAGE
|
API integration
|
Required to create external functions that r... | |
snowflake_docs/validate_1_0.txt | VALIDATE ¶
Validates the files loaded in a past execution of the [ COPY INTO <table>
during the load, rather than just the first error.
| |
snowflake_docs/functions-date-time_0_0.txt | /
1. Construction
5. Extraction
29. Addition & Subtraction
38. Truncation
42. Conversion
57. Time Zone
59. Alerts
| |
snowflake_docs/task_dependents_4_0.txt | Arguments ¶
` TASK_NAME => ' _ string _ ' `
A string specifying a task. The function returns the specified root task as
the first entry, followed by the list of child tasks.
* Note that the entire name must be enclosed in single quotes, including the database and schema (if the name is fully-qualified), i.e. `... | |
snowflake_docs/get_notification_email_0_0.txt | /
1. Commands
4. Methods
| |
snowflake_docs/st_y_0_0.txt | /
1. Conversion, Input, Parsing
14. Conversion, Output, Formatting
23. Constructor
32. Accessor
44. Relationship and Measurement
61. Transformation
75. Utility
77. H3
geospatial) ST_Y
Categories:
| |
snowflake_docs/drop-secret_9_0.txt | Examples ¶
Drop a secret:
>
> DROP SECRET service_now_creds;
>
>
> 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. Examples
Related content
Language : **English** | |
snowflake_docs/variance_2_0.txt | Syntax ¶
**Aggregate function**
VARIANCE( [ DISTINCT ] <expr1> )
Copy
**Window function**
VARIANCE( [ DISTINCT ] <expr1> ) OVER (
[ PARTITION BY <expr2> ]
[ ORDER BY <expr3> [ ASC | DESC ] [ <window_frame> ] ]
... | |
TeleBot/Types_of_API_136_0.txt | _ class _ telebot.types. MessageOriginChat ( _ date : int _ , _ sender_chat : Chat _ , _ author_signature : str | None = None _ ) ¶
Bases: ` MessageOrigin `
The message was originally sent on behalf of a chat to a group chat.
Parameters :
* **sender_chat** ( ` Chat ` ) – Chat th... | |
TeleBot/TeleBot_2_47.txt | types.MessageEntity "telebot.types.MessageEntity") ] | None = None _ , _ supports_streaming : bool | None = None _ , _ disable_notification : bool | None = None _ , _ protect_content : bool | None = None _ , _ reply_to_message_id : int | None = None _ , _ allow_sending_without_reply : ... | |
TeleBot/Types_of_API_179_0.txt | _ class _ telebot.types. VoiceChatEnded ( _ * args _ , _ ** kwargs _ )
¶
Bases: ` VideoChatEnded `
Deprecated, use ` VideoChatEnded ` instead.
| |
TeleBot/TeleBot_2_21.txt | olling (see API docs)
* **skip_pending** ( ` bool ` ) – skip old updates
* **logger_level** ( ` int ` .) – Custom (different from logger itself) logging level for infinity_polling logging. Use logger levels from logging as a value. None/NOTSET = no error logging
* **allowed_updates** ( ` list ` of ` str ... | |
TeleBot/Types_of_API_172_0.txt | _ class _ telebot.types. Video ( _ file_id _ , _ file_unique_id _ , _
width _ , _ height _ , _ duration _ , _ thumbnail = None _ , _ file_name
= None _ , _ mime_type = None _ , _ file_size = None _ , _ ** kwargs
_ ) ¶
Bases: ` JsonDeserializable `
This object represents a video file.
Te... | |
TeleBot/Types_of_API_93_0.txt | _ class _ telebot.types. InlineQueryResultVenue ( _ id _ , _ title _ , _
latitude _ , _ longitude _ , _ address _ , _ foursquare_id = None _ , _
foursquare_type = None _ , _ reply_markup = None _ , _
input_message_content = None _ , _ thumbnail_url = None _ , _
thumbnail_width = None _ , _ th... | |
TeleBot/TeleBot_2_0.txt | _ class _ telebot. TeleBot ( _ token: str _ , _ parse_mode: str | None = None _ , _ threaded: bool | None = True _ , _ skip_pending: bool | None = False _ , _ num_threads: int | None = 2 _ , _ next_step_backend: ~telebot.handler_backends.HandlerBackend | None = None _ , _ reply_backe... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.