Snowflake DAA-C01 Question Answer
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?
Snowflake DAA-C01 Summary
- Vendor: Snowflake
- Product: DAA-C01
- Update on: Mar 17, 2026
- Questions: 65

