A Data Analyst has been asked to predict sales revenue through the end of the year. Which function will provide this information?
This command was executed:
SQL
SELECT seq4(), uniform(1, 10, RANDOM(12))
FROM TABLE(GENERATOR(TIMELIMIT => NULL))
ORDER BY 1;
How many rows will be generated?
What functionalities are available when a Snowflake worksheet is shared with other users? (Select TWO).
A Data Analyst is given access to a table of inventory transfers which includes the product details, fulfillment warehouse location, and destination warehouse location. Which type of visualization should be used to illustrate the most active product transfer routes?
A Data Analyst needs to temporarily hide a tile in a dashboard. The data will need to be available in the future, and additional data may be added. Which tile should be used?
A Data Analyst needs a sample of 10 rows from a table FCT_SALES that has billions of rows. Which commands can be used to accomplish this? (Select TWO).
While loading data into Snowflake using named file formats, a file format defined in which location has precedence?
A Data Analyst executes a query in a Snowflake worksheet that returns the total number of daily sales, and the total amount for each sale. How can the Analyst check the distribution of the total amount, without running the query again?
A Data Analyst creates and populates the following table:
create or replace table aggr(v int) as select * from values (1), (2), (3), (4);
The Analyst then executes this query:
select percentile_disc(0.60) within group (order by v desc) from aggr;
What will be the result?