Data Analytics
Perfect channel to learn Data Analytics Learn SQL, Python, Alteryx, Tableau, Power BI and many more For Promotions: @coderfun @love_data
Show more๐ Analytical overview of Telegram channel Data Analytics
Channel Data Analytics (@sqlspecialist) in the English language segment is an active participant. Currently, the community unites 109 615 subscribers, ranking 1 126 in the Technologies & Applications category and 2 380 in the India region.
๐ Audience metrics and dynamics
Since its creation on ะฝะตะฒัะดะพะผะพ, the project has demonstrated rapid growth, gathering an audience of 109 615 subscribers.
According to the latest data from 18 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 686 over the last 30 days and by -13 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 3.27%. Within the first 24 hours after publication, content typically collects 1.44% reactions from the total number of subscribers.
- Post reach: On average, each post receives 3 581 views. Within the first day, a publication typically gains 1 584 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 8.
- Thematic interests: Content is focused on key topics such as row, sql, analytic, analyst, visualization.
๐ Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
โPerfect channel to learn Data Analytics
Learn SQL, Python, Alteryx, Tableau, Power BI and many more
For Promotions: @coderfun @love_dataโ
Thanks to the high frequency of updates (latest data received on 19 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
sql, python, EDA, dashboard
โข Write short project summary in repo description
๐ง Tips:
โข Push only clean, working code
โข Use folders, not messy files
โข Update your profile bio with your LinkedIn
๐ Practice Task:
Upload your latest project โ Write a README โ Pin it to your profile
๐ฌ Tap โค๏ธ for more!SELECT name, age
FROM employees
WHERE department = 'Sales' AND age > 30;
2๏ธโฃ ORDER BY & LIMIT
Sort and limit your results.
SELECT name, salary
FROM employees
ORDER BY salary DESC
LIMIT 5;
โถ๏ธ Top 5 highest salaries
3๏ธโฃ GROUP BY + Aggregates (SUM, AVG, COUNT)
Summarize data by groups.
SELECT department, AVG(salary) AS avg_salary
FROM employees
GROUP BY department;
4๏ธโฃ HAVING
Filter grouped data (use after GROUP BY).
SELECT department, COUNT(*) AS emp_count
FROM employees
GROUP BY department
HAVING emp_count > 10;
5๏ธโฃ JOINs
Combine data from multiple tables.
SELECT e.name, d.name AS dept_name
FROM employees e
JOIN departments d ON e.dept_id = d.id;
6๏ธโฃ CASE Statements
Create conditional logic inside queries.
SELECT name,
CASE
WHEN salary > 70000 THEN 'High'
WHEN salary > 40000 THEN 'Medium'
ELSE 'Low'
END AS salary_band
FROM employees;
7๏ธโฃ DATE Functions
Analyze trends over time.
SELECT MONTH(join_date) AS join_month, COUNT(*)
FROM employees
GROUP BY join_month;
8๏ธโฃ Subqueries
Nested queries for advanced filters.
SELECT name, salary
FROM employees
WHERE salary > (SELECT AVG(salary) FROM employees);
9๏ธโฃ Window Functions (Advanced)
SELECT name, department, salary,
RANK() OVER(PARTITION BY department ORDER BY salary DESC) AS dept_rank
FROM employees;
โถ๏ธ Rank employees within each department
๐ก Used In:
โข Marketing: campaign ROI, customer segments
โข Sales: top performers, revenue by region
โข HR: attrition trends, headcount by dept
โข Finance: profit margins, cost control
SQL For Data Analytics: https://whatsapp.com/channel/0029Vb6hJmM9hXFCWNtQX944
๐ฌ Tap โค๏ธ for moreage = 20
if age >= 18:
print("You are eligible to vote")
โถ๏ธ Checks if age is 18 or more. Prints "You are eligible to vote"
๐น if-else example
age = 16
if age >= 18:
print("Eligible to vote")
else:
print("Not eligible")
โถ๏ธ Age is 16, so it prints "Not eligible"
๐น elif for multiple conditions
marks = 72
if marks >= 90:
print("Grade A")
elif marks >= 75:
print("Grade B")
elif marks >= 60:
print("Grade C")
else:
print("Fail")
โถ๏ธ Marks = 72, so it matches >= 60 and prints "Grade C"
๐น Comparison Operators
a = 10
b = 20
if a != b:
print("Values are different")
โถ๏ธ Since 10 โ 20, it prints "Values are different"
๐น Logical Operators
age = 25
has_id = True
if age >= 18 and has_id:
print("Entry allowed")
โถ๏ธ Both conditions are True โ prints "Entry allowed"
โ ๏ธ Common Mistakes:
โข Using = instead of ==
โข Bad indentation
โข Comparing incompatible data types
๐ Mini Project โ Age Category Checker
age = int(input("Enter age: "))
if age < 13:
print("Child")
elif age <= 19:
print("Teen")
else:
print("Adult")
โถ๏ธ Takes age as input and prints the category
๐ Practice Tasks:
1. Check if a number is even or odd
2. Check if number is +ve, -ve, or 0
3. Print the larger of two numbers
4. Check if a year is leap year
โ
Practice Task Solutions โ Try it yourself first ๐
1๏ธโฃ Check if a number is even or odd
num = int(input("Enter a number: "))
if num % 2 == 0:
print("Even number")
else:
print("Odd number")
โถ๏ธ % gives remainder. If remainder is 0, it's even.
2๏ธโฃ Check if number is positive, negative, or zero
num = float(input("Enter a number: "))
if num > 0:
print("Positive number")
elif num < 0:
print("Negative number")
else:
print("Zero")
โถ๏ธ Uses > and < to check sign of number.
3๏ธโฃ Print the larger of two numbers
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
if a > b:
print("Larger number is:", a)
elif b > a:
print("Larger number is:", b)
else:
print("Both are equal")
โถ๏ธ Compares a and b and prints the larger one.
4๏ธโฃ Check if a year is leap year
year = int(input("Enter a year: "))
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print("Leap year")
else:
print("Not a leap year")
โถ๏ธ Follows leap year rules:
- Divisible by 4 โ
- But not divisible by 100 โ
- Unless also divisible by 400 โ
๐
Daily Rule:
โ
Code 60 mins
โ
Run every example
โ
Change inputs and observe output
๐ฌ Tap โค๏ธ if this helped you!
Python Programming Roadmap: https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L/2312
Available now! Telegram Research 2025 โ the year's key insights 
