
sidebar.wechat

sidebar.feishu
sidebar.chooseYourWayToJoin

sidebar.scanToAddConsultant
AI is changing the data analysis industry. Traditional data analysts need to be proficient in SQL, Excel, and BI tools, while in the AI era, new skills are becoming more important. This article will help you understand this transformation and provide a specific transformation path.
Core skills:
Typical workflow:
Business requirement → Write SQL → Export data → Excel processing → Create charts → Report results
Pain points:
Core skills:
New workflow:
Business requirement → Configure semantic layer → Teach business personnel to use AI queries → Focus on deep analysis
Value enhancement:
Goal: Understand the principles and capability boundaries of AI data analysis tools
Learning content:
1. Text-to-SQL principles
Natural language → Intent recognition → Query semantic layer → Generate SQL → Execute and return
2. Experience mainstream tools
3. Understand capability boundaries
Practical tasks:
Use AskTable to complete the following queries:
1. "This month's sales amount"
2. "Order volume ranking by region"
3. "Compare GMV for the same period this year vs last year"
4. "Top 10 users by average order value"
Goal: Learn how to "teach" AI to understand business requirements
Core skills:
1. Express requirements clearly
❌ Vague questioning:
"Check the sales situation"
✅ Clear questioning:
"Sales amount and order volume by product category this month, sorted by sales amount in descending order"
2. Decompose complex problems
Complex requirement:
"Analyze user retention"
Decomposed into:
1. "New users this month"
2. "Day-1 retention rate for new users"
3. "Day-7 retention rate for new users"
4. "Compare retention rate differences across channels"
3. Utilize context
First round:
"Sales amount by region this month"
Second round (utilizing context):
"Only East China region"
"Group by city"
"Also show order volume"
4. Verify and correct
Ask question → View generated SQL → Verify logic → If wrong, provide feedback
Practical tasks:
Design Prompts to complete the following analysis:
1. User retention analysis (new, retained, churned)
2. Product sales analysis (volume, sales amount, growth rate)
3. Channel effectiveness analysis (acquisition, conversion, ROI)
Goal: Become a data architect, design reusable semantic layers
Core work:
1. Organize metric system
North Star Metric: GMV
Level 1 Metrics:
- Traffic (UV, PV)
- Conversion rate (registration conversion, purchase conversion)
- Average order value (ARPU, ARPPU)
Level 2 Metrics:
- New user count
- Active user count
- Retention rate
- Repurchase rate
...
2. Define metrics
Metric Name: Monthly Active Users
English Name: MAU
Definition: Number of unique users with at least one valid behavior in the past 30 days
Calculation Logic: |
SELECT COUNT(DISTINCT user_id)
FROM user_actions
WHERE action_time >= DATE_SUB(NOW(), INTERVAL 30 DAY)
AND action_type IN ('login', 'purchase', 'browse')
Synonyms: [Monthly Active, MAU, Active Users]
Related Metrics: [DAU, WAU]
3. Design dimensions
Dimension Name: Time
Field: created_at
Type: datetime
Supported granularities: [hour, day, week, month, quarter, year]
Predefined ranges:
- Today
- Yesterday
- This week
- This month
- Last month
4. Encapsulate business rules
Rule Name: Valid Order
Definition: Orders meeting the following conditions
Conditions:
- status IN ('paid', 'completed')
- amount > 0
- user_id >= 10000 # Exclude test users
Application scenarios: All metrics involving order statistics
Practical tasks:
Design a complete semantic layer for your company:
1. Organize 20-30 core metrics
2. Define 5-10 key dimensions
3. Encapsulate 3-5 business rules
4. Configure and test in AskTable
1. Prompt Engineering
2. Business Semantic Layer Design
3. AI Tool Usage
Traditional skills that remain important:
Skills that may be needed in the future:
Responsibilities:
Required skills:
Responsibilities:
Required skills:
Responsibilities:
Required skills:
Wrong mindset:
"AI will replace my job, I need to resist it"
Correct mindset:
"AI is a tool, I need to learn to use it to make myself more valuable"
Don't:
Do:
Share your experience:
Build influence:
AI technology develops quickly:
Recommended resources:
A: No. AI will replace repetitive data retrieval work, but cannot replace:
The data analyst's role will upgrade from "data retrieval tool person" to "data architect" and "business consultant."
A: Yes. Data analysts in the AI era don't necessarily need strong programming skills, but need:
Programming ability is a plus, but not a required skill.
A: Depends on your foundation and investment:
The key is continuous practice, not learning all content at once.
A: Usually yes. Data analysts who master AI tools:
According to industry research, data analysts who master AI skills have an average salary increase of 20-30%.
In the AI era, the core value of data analysts is no longer "knowing how to write SQL":
1. Understand business: Know the business logic behind data 2. Design architecture: Establish reusable semantic layers 3. Enable others: Enable business personnel to query data independently 4. Deep insights: Discover valuable insights from data
Three-step transformation:
Key mindset:
AI will not replace data analysts, but it will replace data analysts who don't know how to use AI. Start your transformation journey now!
Start your transformation:
sidebar.noProgrammingNeeded
sidebar.startFreeTrial