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 491 subscribers, ranking 4 749 in the Education category and 10 441 in the India region.
๐ Audience metrics and dynamics
Since its creation on ะฝะตะฒัะดะพะผะพ, the project has demonstrated rapid growth, gathering an audience of 39 491 subscribers.
According to the latest data from 08 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 202 over the last 30 days and by -14 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 2.66%. Within the first 24 hours after publication, content typically collects 0.96% reactions from the total number of subscribers.
- Post reach: On average, each post receives 1 052 views. Within the first day, a publication typically gains 378 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 3.
- 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 09 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 Education category.
CREATE DATABASE db_name;
- USE db_name;
2. Tables
- Create Table: CREATE TABLE table_name (col1 datatype, col2 datatype);
- Drop Table: DROP TABLE table_name;
- Alter Table: ALTER TABLE table_name ADD column_name datatype;
3. Insert Data
- INSERT INTO table_name (col1, col2) VALUES (val1, val2);
4. Select Queries
- Basic Select: SELECT * FROM table_name;
- Select Specific Columns: SELECT col1, col2 FROM table_name;
- Select with Condition: SELECT * FROM table_name WHERE condition;
5. Update Data
- UPDATE table_name SET col1 = value1 WHERE condition;
6. Delete Data
- DELETE FROM table_name WHERE condition;
7. Joins
- Inner Join: SELECT * FROM table1 INNER JOIN table2 ON table1.col = table2.col;
- Left Join: SELECT * FROM table1 LEFT JOIN table2 ON table1.col = table2.col;
- Right Join: SELECT * FROM table1 RIGHT JOIN table2 ON table1.col = table2.col;
8. Aggregations
- Count: SELECT COUNT(*) FROM table_name;
- Sum: SELECT SUM(col) FROM table_name;
- Group By: SELECT col, COUNT(*) FROM table_name GROUP BY col;
9. Sorting & Limiting
- Order By: SELECT * FROM table_name ORDER BY col ASC|DESC;
- Limit Results: SELECT * FROM table_name LIMIT n;
10. Indexes
- Create Index: CREATE INDEX idx_name ON table_name (col);
- Drop Index: DROP INDEX idx_name;
11. Subqueries
- SELECT * FROM table_name WHERE col IN (SELECT col FROM other_table);
12. Views
- Create View: CREATE VIEW view_name AS SELECT * FROM table_name;
- Drop View: DROP VIEW view_name;
Available now! Telegram Research 2025 โ the year's key insights 
