SnowPro Advanced: Data Analyst Exam
Last Update Feb 28, 2026
Total Questions : 65
We are offering FREE DAA-C01 Snowflake exam questions. All you do is to just go and sign up. Give your details, prepare DAA-C01 free exam questions and then go for complete pool of SnowPro Advanced: Data Analyst Exam test questions that will help you more.
A Data Analyst is working with three tables:

Which query would return a list of all brokers, a count of the customers each broker has. and the total order amount of their customers (as shown below)?

A)

B)

C)

D)

A Data Analyst created two functions and one procedures:
The Analyst then runs this query:

The Analyst then runs this query:

What will be the output?
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?
A Data Analyst created two tables that are related by a foreign key, using the following commands:

Then the Analyst renamed the referenced table using the following command: ALTER TABLE mother RENAME TO father; What happens to the foreign key after the referenced table is renamed?
A large, complicated query is used to generate a data set for a report on the most recent month. It is taking longer than expected. A review of the Query Profile shows excessive spilling. How can the performance of the query be improved WITHOUT increasing costs?
A Data Analyst runs this query:

The Analyst men runs this query:

What will be the output?
A)

B)

C)

D)

A Data Analyst needs to rotate a table by transforming a wide table’s columns into rows.

Which operator will be MOST beneficial for producing this output?

A Data Analyst created a cost overview dashboard in Snowsight. Management has asked for a system date filter to easily change the time period and refresh the data in all dashboard tiles with a single filter selection.
The system date filter is shown below:

The Analyst wants to apply the filter onto individual dashboard components.
Adding which where clause to the queries will apply the filter as required?
Table TB_A with column COL_B contains an ARRAY. Which statement will select the last element of the ARRAY?
What functions should a Data Analyst use to run descriptive analytics on a data set? (Select TWO).
This query is run:
SQL
SELECT
customer.id,
ANY_VALUE(customer.name),
SUM(orders.value)
FROM customer
JOIN orders ON customer.id = orders.customer_id
GROUP BY customer.id;
What is the effect of ANY_VALUE in this syntax?
Which Snowflake feature allows users to encapsulate a series of SQL statements into a reusable database object, facilitating modular code development?
A Data Analyst is creating a Snowsight dashboard from a shared worksheet. What happens to the access and permissions of the users who initially had sharing privileges on the worksheet?
Which query will provide this data without incurring additional storage costs?
Given the following data:

This SELECT statement is executed:

What will be the result?
The image shows a table with a variant column that is storing a JSON record:

This SQL query is run:

What will be the result?
A)

B)

C)

D)
