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 620 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 620 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.
SELECT column_name FROM table_name
ORDER BY column_name;
๐น Ascending Order (Default)
SELECT * FROM employees
ORDER BY salary ASC;
โ Lowest salary โ highest
๐น Descending Order
SELECT * FROM employees
ORDER BY salary DESC;
โ Highest salary โ lowest
๐ก 2. Sorting Multiple Columns
SELECT * FROM employees
ORDER BY department ASC, salary DESC;
๐ First sorts by department
๐ Then salary within each department
๐ฏ 3. LIMIT (Control Output Size)
LIMIT is used to restrict the number of rows.
๐ Syntax
SELECT * FROM table_name
LIMIT number;
๐ Example
SELECT * FROM employees
LIMIT 5;
โ Returns only the first 5 rows
โก 4. Using ORDER BY LIMIT
๐ Top 5 highest salaries
SELECT * FROM employees
ORDER BY salary DESC
LIMIT 5;
๐ Lowest 3 salaries
SELECT * FROM employees
ORDER BY salary ASC
LIMIT 3;
๐ฏ 5. Practice Tasks
1. Show all employees sorted by salary (ascending)
2. Show all employees sorted by salary (descending)
3. Get top 3 highest paid employees
4. Get lowest 2 salary employees
5. Sort employees by department and salary
โ
Practice Task Solution
โ
1. Show all employees sorted by salary (ascending)
SELECT * FROM employees
ORDER BY salary ASC;
โ
2. Show all employees sorted by salary (descending)
SELECT * FROM employees
ORDER BY salary DESC;
โ
3. Get top 3 highest paid employees
SELECT * FROM employees
ORDER BY salary DESC
LIMIT 3;
โ
4. Get lowest 2 salary employees
SELECT * FROM employees
ORDER BY salary ASC
LIMIT 2;
โ
5. Sort employees by department and salary
SELECT * FROM employees
ORDER BY department ASC, salary DESC;
๐ First sorts by department
๐ Then highest salary inside each department
โก Mini Challenge ๐ฅ
๐ Get the 2nd highest salary employee.
โก Mini Challenge Solution ๐ฅ
โ Method 1 (Using LIMIT + OFFSET)
SELECT * FROM employees
ORDER BY salary DESC
LIMIT 1 OFFSET 1;
โ Method 2 (Alternative way)
SELECT * FROM employees
ORDER BY salary DESC
LIMIT 1, 1;
๐ฅ Pro Tip:
If you understand OFFSET โ you can get Top N, 2nd highest, 3rd highest easily.
โก Double Tap โค๏ธ For More
Available now! Telegram Research 2025 โ the year's key insights 
