Loading...
Loading...
Compare original and translation side by side
~~data warehouse~~data warehouse-- BigQuery: List datasets
SELECT schema_name FROM INFORMATION_SCHEMA.SCHEMATA
-- BigQuery: List tables in a dataset
SELECT table_name FROM `project.dataset.INFORMATION_SCHEMA.TABLES`
-- Snowflake: List schemas
SHOW SCHEMAS IN DATABASE my_database
-- Snowflake: List tables
SHOW TABLES IN SCHEMA my_schema~~data warehouse~~data warehouse-- BigQuery: 列出数据集
SELECT schema_name FROM INFORMATION_SCHEMA.SCHEMATA
-- BigQuery: 列出数据集中的表
SELECT table_name FROM `project.dataset.INFORMATION_SCHEMA.TABLES`
-- Snowflake: 列出架构
SHOW SCHEMAS IN DATABASE my_database
-- Snowflake: 列出表
SHOW TABLES IN SCHEMA my_schema"When people here say 'user' or 'customer', what exactly do they mean? Are there different types?"
"What's the main identifier for a [customer/user/account]? Are there multiple IDs for the same entity?"
"What are the 2-3 metrics people ask about most? How is each one calculated?"
"What should ALWAYS be filtered out of queries? (test data, fraud, internal users, etc.)"
"What mistakes do new analysts typically make with this data?"
“在贵公司,当人们提到‘用户’或‘客户’时,具体指的是什么?是否存在不同类型?”
“[客户/用户/账户]的主要标识符是什么?同一实体是否有多个ID?”
“人们最常关注的2-3个指标是什么?每个指标的计算方式是怎样的?”
“查询时必须过滤掉哪些内容?(如测试数据、欺诈数据、内部用户等)”
“新分析师使用这些数据时通常会犯哪些错误?”
[company]-data-analyst/
├── SKILL.md
└── references/
├── entities.md # Entity definitions and relationships
├── metrics.md # KPI calculations
├── tables/ # One file per domain
│ ├── [domain1].md
│ └── [domain2].md
└── dashboards.json # Optional: existing dashboards catalogreferences/skill-template.mdreferences/sql-dialects.mdreferences/domain-template.md[company]-data-analyst/
├── SKILL.md
└── references/
├── entities.md # 实体定义与关系
├── metrics.md # KPI计算方式
├── tables/ # 按领域划分的文件
│ ├── [domain1].md
│ └── [domain2].md
└── dashboards.json # 可选:现有仪表板目录references/skill-template.mdreferences/sql-dialects.mdreferences/domain-template.md~~data warehousereferences/[domain].md~~data warehousereferences/[domain].md