Data Analytics
Perfect channel to learn Data Analytics Learn SQL, Python, Alteryx, Tableau, Power BI and many more For Promotions: @coderfun @love_data
Mostrar más📈 Análisis del canal de Telegram Data Analytics
El canal Data Analytics (@sqlspecialist) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 109 708 suscriptores, ocupando la posición 1 117 en la categoría Tecnologías y Aplicaciones y el puesto 2 334 en la región India.
📊 Métricas de audiencia y dinámica
Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 109 708 suscriptores.
Según los últimos datos del 25 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 596, y en las últimas 24 horas de 55, conservando un alto alcance.
- Estado de verificación: No verificado
- Tasa de interacción (ER): El promedio de interacción de la audiencia es 2.69%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 0.78% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 2 948 visualizaciones. En el primer día suele acumular 853 visualizaciones.
- Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 8.
- Intereses temáticos: El contenido se centra en temas clave como row, sql, analytic, analyst, visualization.
📝 Descripción y política de contenido
El autor describe el recurso como un espacio para expresar opiniones subjetivas:
“Perfect channel to learn Data Analytics
Learn SQL, Python, Alteryx, Tableau, Power BI and many more
For Promotions: @coderfun @love_data”
Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 26 junio, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Tecnologías y Aplicaciones.
-- Find employees earning more than the average salary
SELECT Name, Salary
FROM Employees
WHERE Salary > (SELECT AVG(Salary) FROM Employees);
Example 2: Multi-row Subquery
-- Find employees in specific departments
SELECT Name
FROM Employees
WHERE DepartmentID IN (SELECT DepartmentID FROM Departments WHERE Location = 'NY');
Example 3: Correlated Subquery
-- Find employees with the highest salary in each department
SELECT Name, Salary
FROM Employees E1
WHERE Salary = (
SELECT MAX(Salary)
FROM Employees E2
WHERE E1.DepartmentID = E2.DepartmentID
);
2. Common Table Expressions (CTEs)
CTEs provide a way to define temporary result sets that can be reused in the main query.
Syntax:
WITH CTEName AS (
SELECT Column1, Column2
FROM TableName
WHERE Condition
)
SELECT *
FROM CTEName;
Example 1: Simple CTE
-- Get total salary per department
WITH DepartmentSalary AS (
SELECT DepartmentID, SUM(Salary) AS TotalSalary
FROM Employees
GROUP BY DepartmentID
)
SELECT *
FROM DepartmentSalary;
Example 2: Recursive CTE Used for hierarchical data (e.g., organizational structures).
WITH RecursiveCTE AS (
-- Anchor member
SELECT EmployeeID, ManagerID, Name
FROM Employees
WHERE ManagerID IS NULL
UNION ALL
-- Recursive member
SELECT E.EmployeeID, E.ManagerID, E.Name
FROM Employees E
INNER JOIN RecursiveCTE R
ON E.ManagerID = R.EmployeeID
)
SELECT *
FROM RecursiveCTE;
Action Steps
1. Practice writing subqueries in WHERE, SELECT, and FROM.
2. Use a CTE to simplify complex queries.
3. Create a recursive CTE for hierarchical data if applicable.
🔝 SQL 30 Days Challenge
Here you can find SQL Interview Resources👇
https://topmate.io/analyst/864764
Like this post if you want me to continue this SQL series 👍♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)SELECT Employees.Name, Departments.DepartmentName
FROM Employees
INNER JOIN Departments
ON Employees.DepartmentID = Departments.DepartmentID;
2. LEFT JOIN (or LEFT OUTER JOIN)
Returns all rows from the left table and matching rows from the right table. Non-matching rows in the right table return NULL.
Example:
SELECT Employees.Name, Departments.DepartmentName
FROM Employees
LEFT JOIN Departments
ON Employees.DepartmentID = Departments.DepartmentID;
3. RIGHT JOIN (or RIGHT OUTER JOIN)
Returns all rows from the right table and matching rows from the left table. Non-matching rows in the left table return NULL.
Example:
SELECT Employees.Name, Departments.DepartmentName
FROM Employees
RIGHT JOIN Departments
ON Employees.DepartmentID = Departments.DepartmentID;
4. FULL JOIN (or FULL OUTER JOIN)
Returns all rows when there is a match in either table. Rows without matches return NULL.
Example:
SELECT Employees.Name, Departments.DepartmentName
FROM Employees
FULL JOIN Departments
ON Employees.DepartmentID = Departments.DepartmentID;
5. SELF JOIN
A SELF JOIN is a table joined with itself, useful for hierarchical or relationship data.
Syntax:
SELECT A.Column1, B.Column2
FROM TableName A
INNER JOIN TableName B
ON A.CommonColumn = B.CommonColumn;
Example:
-- Find employees with the same manager
SELECT A.Name AS Employee, B.Name AS Manager
FROM Employees A
INNER JOIN Employees B
ON A.ManagerID = B.EmployeeID;
6. CROSS JOIN
Combines each row from the first table with all rows from the second table, creating a Cartesian product.
Syntax:
SELECT *
FROM Table1
CROSS JOIN Table2;
Example:
SELECT Employees.Name, Projects.ProjectName
FROM Employees
CROSS JOIN Projects;
Combining Joins with Filters
Use WHERE or ON to refine join results.
Example:
-- Employees without departments
SELECT Employees.Name, Departments.DepartmentName
FROM Employees
LEFT JOIN Departments
ON Employees.DepartmentID = Departments.DepartmentID
WHERE Departments.DepartmentName IS NULL;
Action Steps
1. Practice SELF JOIN for hierarchical relationships like managers and employees.
2. Use CROSS JOIN to generate all possible combinations of two tables.
3. Review and compare the results of all join types in your dataset.-- Total salary per department
SELECT Department, SUM(Salary) AS TotalSalary
FROM Employees
GROUP BY Department;
2. Filtering Groups with HAVING
Use HAVING to filter groups created by GROUP BY.
Similar to WHERE, but for aggregated data.
Example:
-- Departments with total salary > 100000
SELECT Department, SUM(Salary) AS TotalSalary
FROM Employees
GROUP BY Department
HAVING SUM(Salary) > 100000;
3. Combining WHERE, GROUP BY, and HAVING
Use WHERE to filter rows before grouping.
Use HAVING to filter groups after aggregation.
Example:
-- Total salary of IT department with salary > 40000
SELECT Department, SUM(Salary) AS TotalSalary
FROM Employees
WHERE Salary > 40000
GROUP BY Department
HAVING SUM(Salary) > 100000;
4. Sorting Groups with ORDER BY
Sort grouped data using ORDER BY.
Example:
-- Sort by total salary (descending)
SELECT Department, SUM(Salary) AS TotalSalary
FROM Employees
GROUP BY Department
ORDER BY TotalSalary DESC;
Action Steps
1. Group data by a column (e.g., department) and use aggregate functions.
2. Filter groups using HAVING.
3. Sort grouped data with ORDER BY.
These are very useful SQL concepts, so I would recommend you solve problems related to GROUP BY & HAVING from leetcode or Stratascrach today itself. Start with easy ones and increase difficulty level as you proceed.
🔝 SQL 30 Days Challenge
Here you can find SQL Interview Resources👇
https://topmate.io/analyst/864764
Like this post if you want me to continue this SQL series 👍♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)SELECT SUM(Salary) AS TotalSalary
FROM Employees;
2. AVG: Calculate the Average
The AVG() function calculates the average value of a numeric column.
Example:
SELECT AVG(Salary) AS AverageSalary
FROM Employees;
3. MIN and MAX: Find the Lowest and Highest Values
MIN() finds the smallest value.
MAX() finds the largest value.
Examples:
-- Lowest salary
SELECT MIN(Salary) AS LowestSalary
FROM Employees;
-- Highest salary
SELECT MAX(Salary) AS HighestSalary
FROM Employees;
4. COUNT: Count Rows
The COUNT() function counts the number of rows.
Examples:
-- Count all rows
SELECT COUNT(*) AS TotalEmployees
FROM Employees;
-- Count employees in a specific department
SELECT COUNT(*) AS TotalITEmployees
FROM Employees
WHERE Department = 'IT';
5. Combining Aggregates
You can use multiple aggregate functions in one query.
Example:
SELECT
COUNT(*) AS TotalEmployees,
AVG(Salary) AS AverageSalary,
MAX(Salary) AS HighestSalary
FROM Employees;
Action Steps
1. Find the total, average, minimum, and maximum salaries in your table.
2. Count rows based on specific conditions (e.g., employees in a department).
3. Combine multiple aggregates in a single query.
🔝 SQL 30 Days Challenge
Here you can find SQL Interview Resources👇
https://topmate.io/analyst/864764
Like this post if you want me to continue this SQL series 👍♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)SELECT * FROM Employees
WHERE Department = 'IT';
2. Using LIKE for Pattern Matching
Use LIKE with wildcards to match patterns:
%: Matches zero or more characters.
_: Matches a single character.
Examples:
-- Names starting with 'J'
SELECT * FROM Employees
WHERE Name LIKE 'J%';
-- Names ending with 'n'
SELECT * FROM Employees
WHERE Name LIKE '%n';
-- Names with 'a' as the second character
SELECT * FROM Employees
WHERE Name LIKE '_a%';
3. Using IN for Specific Values
Use IN to filter rows matching a list of values.
Example:
SELECT * FROM Employees
WHERE Department IN ('IT', 'Finance');
4. Using BETWEEN for Ranges
Use BETWEEN to filter data within a range (inclusive).
Examples:
-- Salaries between 40000 and 60000
SELECT * FROM Employees
WHERE Salary BETWEEN 40000 AND 60000;
-- Hire dates in 2023
SELECT * FROM Employees
WHERE HireDate BETWEEN '2023-01-01' AND '2023-12-31';
Combining Conditions with AND & OR
Example:
WHERE Department = 'IT' AND Salary > 50000;
```SELECT * FROM Employees
WHERE Department = 'HR' OR Salary < 40000;`
Action Steps
1. Retrieve rows using LIKE to match patterns in a column.
2. Filter rows using IN and BETWEEN.
3. Combine conditions with AND and OR.
🔝 SQL 30 Days Challenge
Here you can find SQL Interview Resources👇
https://topmate.io/analyst/864764
Like this post if you want me to continue this SQL series 👍♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)UPDATE Employees
SET Department = 'Finance', Salary = 60000
WHERE EmployeeID = 2;
Deleting All Rows
To delete all rows without removing the table structure, skip the WHERE clause.
Example:
DELETE FROM Employees;
Truncating Data
If you need to quickly remove all rows while resetting the auto-increment counters, use TRUNCATE.
Example:
TRUNCATE TABLE Employees;
Action Steps
1. Update a column value (e.g., increase all salaries by 10%).
UPDATE Employees
SET Salary = Salary * 1.1;
2. Delete a specific row based on a condition.
3. Optionally, practice truncating your table (use carefully!).
SQL 30 Days Challenge
Here you can find SQL Interview Resources👇
https://topmate.io/analyst/864764
Like this post if you want me to continue this SQL series 👍♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
