Data Analytics Projects - SQL, Excel, Tableau, Python & Power BI Interview Resources
Covering all technical and popular stuff about anything related to Data Science: AI, Big Data, Machine Learning, Statistics, general Math and the applications of former. Ads/ Promo: @love_data
Show more📈 Analytical overview of Telegram channel Data Analytics Projects - SQL, Excel, Tableau, Python & Power BI Interview Resources
Channel Data Analytics Projects - SQL, Excel, Tableau, Python & Power BI Interview Resources (@sqlproject) in the English language segment is an active participant. Currently, the community unites 39 698 subscribers, ranking 4 591 in the Education category and 9 708 in the India region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 39 698 subscribers.
According to the latest data from 29 August, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 36 over the last 30 days and by 17 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 1.87%. Within the first 24 hours after publication, content typically collects 0.73% reactions from the total number of subscribers.
- Post reach: On average, each post receives 744 views. Within the first day, a publication typically gains 290 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 2.
- Thematic interests: Content is focused on key topics such as analytic, dataset, visualization, sql, learning.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Covering all technical and popular stuff about anything related to Data Science: AI, Big Data, Machine Learning, Statistics, general Math and the applications of former.
Ads/ Promo: @love_data”
Thanks to the high frequency of updates (latest data received on 30 August, 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 Education category.
COUNT(*)
✅ Counts all rows in the table.
📌 COUNT(column_name)
✅ Counts only non-NULL values in that column.
Example:
Salary Values:
50000
NULL
70000
🔹 COUNT(*) → 3
🔹 COUNT(Salary) → 2
💡 This small difference can completely change your analysis and is a favorite topic in SQL interviews.
❤️ React with a ❤️ if you learned something new today, and follow for more SQL, Excel, Power BI & Data Analyst interview tips!SELECT e1.name, e1.department, e1.salary
FROM employees e1
JOIN employees e2 ON e1.department = e2.department AND e1.manager_id = e2.id
WHERE e1.salary > e2.salary;
I self-joined the employees table on department and manager_id to compare each employee's salary against their manager's in the same department. The WHERE clause filters for employees earning more. This tests join mastery for hierarchical data, common in org charts.
𝗧𝗶𝗽 𝗳𝗼𝗿 𝗦𝗤𝗟 𝗝𝗼𝗯 𝗦𝗲𝗲𝗸𝗲𝗿𝘀:
Self-joins shine for intra-table relationships like managers/employees or siblings—practice with employee hierarchies to impress in data engineering interviews!
React with ❤️ for more