Data Analytics
108K subscribers
126 photos
2 files
821 links
Perfect channel to learn Data Analytics

Learn SQL, Python, Alteryx, Tableau, Power BI and many more

For Promotions: @coderfun @love_data
Download Telegram
Which SQL clause is used to group rows that have the same values?
Anonymous Quiz
80%
A) GROUP BY
7%
B) WHERE
4%
C) SELECT
9%
D) ORDER BY
3🥰2
Which SQL operation is used to combine data from two or more tables?
Anonymous Quiz
2%
A) FILTER
20%
B) MERGE
68%
C) JOIN
11%
D) UNION
4
Which SQL function is used to assign ranking to rows in window functions?
Anonymous Quiz
4%
A) SUM()
7%
B) COUNT()
87%
C) RANK()
2%
D) AVG()
7
Which function is used to count the total number of rows in a table?
Anonymous Quiz
10%
A) SUM()
82%
B) COUNT()
2%
C) AVG()
6%
D) TOTAL()
6
Which clause is used to group rows with the same values?
Anonymous Quiz
11%
A) ORDER BY
9%
B) WHERE
70%
C) GROUP BY
10%
D) HAVING
Which clause is used to filter grouped results?
Anonymous Quiz
19%
A) WHERE
34%
B) GROUP BY
43%
C) HAVING
3%
D) LIMIT
3
🚀 Top 10 Careers in Data Analytics (2026)📊💼

1️⃣ Data Analyst
▶️ Skills: Excel, SQL, Power BI, Data Cleaning, Data Visualization
💰 Avg Salary: ₹6–15 LPA (India) / 90K+ USD (Global)

2️⃣ Business Intelligence (BI) Analyst
▶️ Skills: Power BI, Tableau, SQL, Data Modeling, Dashboard Design
💰 Avg Salary: ₹8–18 LPA / 100K+

3️⃣ Product Analyst
▶️ Skills: SQL, Python, A/B Testing, Product Metrics, Experimentation
💰 Avg Salary: ₹12–25 LPA / 120K+

4️⃣ Analytics Engineer
▶️ Skills: SQL, dbt, Data Modeling, Data Warehousing, ETL
💰 Avg Salary: ₹12–22 LPA / 120K+

5️⃣ Marketing Analyst
▶️ Skills: Google Analytics, SQL, Excel, Customer Segmentation, Attribution Analysis
💰 Avg Salary: ₹7–16 LPA / 95K+

6️⃣ Financial Data Analyst
▶️ Skills: Excel, SQL, Forecasting, Financial Modeling, Power BI
💰 Avg Salary: ₹8–18 LPA / 105K+

7️⃣ Data Visualization Specialist
▶️ Skills: Tableau, Power BI, Storytelling with Data, Dashboard Design
💰 Avg Salary: ₹7–17 LPA / 100K+

8️⃣ Operations Analyst
▶️ Skills: SQL, Excel, Process Analysis, Business Metrics, Reporting
💰 Avg Salary: ₹6–15 LPA / 95K+

9️⃣ Risk & Fraud Analyst
▶️ Skills: SQL, Python, Fraud Detection Models, Statistical Analysis
💰 Avg Salary: ₹10–20 LPA / 110K+

🔟 Analytics Consultant
▶️ Skills: SQL, BI Tools, Business Strategy, Stakeholder Communication
💰 Avg Salary: ₹12–28 LPA / 125K+

📊 Data Analytics is one of the most practical and fastest ways to enter the tech industry in 2026.

Double Tap ❤️ if this helped you!
40👏2
📊 Essential SQL Concepts Every Data Analyst Must Know

🚀 SQL is the most important skill for Data Analysts. Almost every analytics job requires working with databases to extract, filter, analyze, and summarize data.

Understanding the following SQL concepts will help you write efficient queries and solve real business problems with data.

1️⃣ SELECT Statement (Data Retrieval)

What it is: Retrieves data from a table.

SELECT name, salary
FROM employees;

Use cases: Retrieving specific columns, viewing datasets, extracting required information.

2️⃣ WHERE Clause (Filtering Data)

What it is: Filters rows based on specific conditions.

SELECT *
FROM orders
WHERE order_amount > 500;

Common conditions: =, >, <, >=, <=, BETWEEN, IN, LIKE

3️⃣ ORDER BY (Sorting Data)

What it is: Sorts query results in ascending or descending order.

SELECT name, salary
FROM employees
ORDER BY salary DESC;

Sorting options: ASC (default), DESC

4️⃣ GROUP BY (Aggregation)

What it is: Groups rows with same values into summary rows.

SELECT department, COUNT(*)
FROM employees
GROUP BY department;

Use cases: Sales per region, customers per country, orders per product category.

5️⃣ Aggregate Functions

What they do: Perform calculations on multiple rows.

SELECT AVG(salary)
FROM employees;

Common functions: COUNT(), SUM(), AVG(), MIN(), MAX()

6️⃣ HAVING Clause

What it is: Filters grouped data after aggregation.

SELECT department, COUNT(*)
FROM employees
GROUP BY department
HAVING COUNT(*) > 5;

Key difference: WHERE filters rows before grouping, HAVING filters groups after aggregation.

7️⃣ SQL JOINS (Combining Tables)

What they do:

Combine tables.
-- INNER JOIN
SELECT orders.order_id, customers.customer_name
FROM orders
INNER JOIN customers
ON orders.customer_id = customers.customer_id;

-- LEFT JOIN
SELECT customers.customer_name, orders.order_id
FROM customers
LEFT JOIN orders
ON customers.customer_id = orders.customer_id;

Common types: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN

8️⃣ Subqueries

What it is: Query inside another query.

SELECT name
FROM employees
WHERE salary > (SELECT AVG(salary) FROM employees);

Use cases: Comparing values, filtering based on aggregated results.

9️⃣ Common Table Expressions (CTE)

What it is: Temporary result set used inside a query.

WITH high_salary AS (
SELECT name, salary
FROM employees
WHERE salary > 70000
)
SELECT *
FROM high_salary;

Benefits: Cleaner queries, easier debugging, better readability.

🔟 Window Functions

What they do: Perform calculations across rows related to current row.

SELECT name, salary, RANK() OVER (ORDER BY salary DESC) AS salary_rank
FROM employees;

Common functions: ROW_NUMBER(), RANK(), DENSE_RANK(), LAG(), LEAD()

Why SQL is Critical for Data Analysts
• Extract data from databases
• Analyze large datasets efficiently
• Generate reports and dashboards
• Support business decision-making

SQL Resources: https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v

Double Tap ♥️ For More
17
Which JOIN returns only matching records from both tables?
Anonymous Quiz
4%
A) LEFT JOIN
5%
B) RIGHT JOIN
76%
C) INNER JOIN
16%
D) FULL JOIN
1
Which JOIN returns all rows from the left table and matching rows from the right table?
Anonymous Quiz
6%
A) INNER JOIN
74%
B) LEFT JOIN
12%
C) RIGHT JOIN
8%
D) FULL JOIN
2
What happens when there is no matching record in a LEFT JOIN?
Anonymous Quiz
8%
A) The row is removed
82%
B) The row appears with NULL values
7%
C) The query fails
2%
D) The row duplicates
1
Which JOIN returns all rows from both tables even if there is no match?
Anonymous Quiz
13%
A) INNER JOIN
4%
B) LEFT JOIN
5%
C) RIGHT JOIN
78%
D) FULL JOIN
🔥3
📂 Top Projects for Data Analytics Portfolio 🚀💻

📊 1. Sales Dashboard (Excel / Power BI / Tableau)
▶️ Analyze monthly/quarterly sales by region, category
▶️ Show KPIs: Revenue, YoY Growth, Profit Margin

🛍 2. E-commerce Customer Segmentation (Python + Clustering)
▶️ Use RFM (Recency, Frequency, Monetary) model
▶️ Visualize clusters with Seaborn / Plotly

📉 3. Churn Prediction Model (Python + ML)
▶️ Dataset: Telecom or SaaS customer data
▶️ Techniques: Logistic Regression, Decision Tree

📦 4. Supply Chain Delay Analysis (SQL + Tableau)
▶️ Identify causes of late deliveries using historical order data
▶️ Visualize supplier-wise performance

📈 5. A/B Testing for Product Feature (SQL + Python)
▶️ Simulate or use real test data (e.g. button click-through rates)
▶️ Metrics: Conversion Rate, Significance Test

📍 6. COVID-19 Trend Tracker (Python + Dash)
▶️ Scrape or pull live data from APIs
▶️ Show cases, recovery, testing rates by country

📅 7. HR Analytics – Attrition Analysis (Excel / Python)
▶️ Predict or explore employee exits
▶️ Use decision trees or visual storytelling

💡 Tip: Upload projects to GitHub + create a simple portfolio site or blog to stand out.

💬 Double Tap ❤️ For More
42
1
What keyword is used to create a Common Table Expression (CTE)?
Anonymous Quiz
34%
A) CREATE
45%
B) WITH
11%
C) TEMP
10%
D) SUBQUERY