DAA-C01 試験問題を無料オンラインアクセス
| 試験コード: | DAA-C01 |
| 試験名称: | SnowPro Advanced: Data Analyst Certification Exam |
| 認定資格: | Snowflake |
| 無料問題数: | 67 |
| 更新日: | 2026-09-01 |
A Data Analyst runs a query in a Snowflake worksheet, and selects a numeric column from the result grid.
What automatically-generated contextual statistic can be visualized?
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 add address details based on a customer's latitude and longitude to a customer sales database. The Analyst found a free Worldwide Address Data listing on the Snowflake Marketplace. The ACCOUNTADMIN placed the data set into a new database called ADDRESS_DATA. The Data Analyst needs to join the ADDRESS_DATA.OPENADDRESS table with the ORDERS table which is stored in the GLOBAL_DWH database. The combined data set needs to be created as a view. How can this be achieved?
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?