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 681 suscriptores, ocupando la posición 1 122 en la categoría Tecnologías y Aplicaciones y el puesto 2 340 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 681 suscriptores.
Según los últimos datos del 24 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 584, y en las últimas 24 horas de 71, 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.76%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 0.68% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 3 024 visualizaciones. En el primer día suele acumular 743 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 25 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.
WITH cte_name AS ( SELECT column1, column2 FROM table_name WHERE condition ) SELECT * FROM cte_name;
Example: Using CTE to Find Employees with High Salaries
WITH HighSalaryEmployees AS ( SELECT employee_id, first_name, salary FROM employees WHERE salary > 70000 ) SELECT * FROM HighSalaryEmployees;
When to Use CTEs?
1️⃣ Improve Readability – Makes complex queries easier to understand.
2️⃣ Avoid Subquery Repetition – Instead of repeating subqueries, define them once in a CTE.
3️⃣ Enable Recursion – Useful for hierarchical data like employee-manager relationships.
Top 20 SQL Interview Questions
Like this post if you want me to continue this SQL Interview Series♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;
Explanation:
ORDER BY salary DESC sorts salaries in descending order.
LIMIT 1 OFFSET 1 skips the highest salary (OFFSET 1) and retrieves the next highest.
2️⃣ Using RANK() (Works in SQL Server, PostgreSQL, MySQL 8+)
SELECT salary FROM ( SELECT salary, RANK() OVER (ORDER BY salary DESC) AS rnk FROM employees ) ranked_salaries WHERE rnk = 2;
Explanation:
The inner query assigns a RANK() to each salary.
The outer query filters for rnk = 2 to get the second highest salary.
3️⃣ Using MAX() and NOT IN (Works in all SQL versions)
SELECT MAX(salary) FROM employees WHERE salary NOT IN (SELECT MAX(salary) FROM employees);
Explanation:
The subquery finds the highest salary.
The main query finds the maximum salary excluding the highest one.
Each approach depends on the database system you are using.
Top 20 SQL Interview Questions
Like this post if you want me to continue this SQL Interview Series♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)SELECT employee_id, salary,
RANK() OVER (ORDER BY salary DESC) AS rank
FROM employees;
2️⃣ DENSE_RANK() is similar to RANK(), but it does not skip ranks when there are ties.
Example: If two employees share rank 2, the next rank will be 3 instead of skipping it.
SELECT employee_id, salary,
DENSE_RANK() OVER (ORDER BY salary DESC) AS dense_rank
FROM employees;
3️⃣ ROW_NUMBER() assigns a unique number to each row, even if the values are the same. No ties occur, and every row gets a unique sequential number.
SELECT employee_id, salary,
ROW_NUMBER() OVER (ORDER BY salary DESC) AS row_num
FROM employees;
⬇️ Key Differences:
RANK() skips numbers when there are duplicates.
DENSE_RANK() does not skip numbers and assigns the next rank sequentially.
ROW_NUMBER() does not allow ties and gives every row a unique number.
Top 20 SQL Interview Questions
Like this post if you want me to continue this SQL Interview Series♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)SELECT DISTINCT column_name FROM table_name;
Explanation:
DISTINCT will return only unique rows for the specified column(s). It compares all columns in the query and removes duplicates.
For example, if you have a table of employees and some rows are repeated, using DISTINCT will only return unique employees.
Example with multiple columns:
SELECT DISTINCT first_name, last_name FROM employees;
This will return only unique combinations of first and last names.
Like this post if you want me to continue this SQL Interview Series♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)-- Using WHERE to filter rows before grouping
SELECT department_id, AVG(salary) AS avg_salary FROM employees WHERE salary > 50000 GROUP BY department_id;
-- Using HAVING to filter groups after aggregation
SELECT department_id, AVG(salary) AS avg_salary FROM employees GROUP BY department_id HAVING AVG(salary) > 60000;
Explanation:
WHERE filters rows where the salary is greater than 50,000 before grouping by department.
HAVING filters departments where the average salary is greater than 60,000 after grouping.
Key difference:
WHERE filters individual rows.
HAVING filters groups after aggregation.
Like this post if you want me to continue this SQL Interview Series♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)SELECT Region, SUM(Sales) AS Total_Sales, AVG(Sales) AS Avg_Sales
FROM Sales
GROUP BY Region;
📌 Step 4: Visualize the Insights
Once you've analyzed the data, create visualizations to make the insights clear and actionable:
Use line charts for trends over time.
Use bar charts to compare different segments (regions, products, etc.).
Use heatmaps for geographical analysis.
💡 Tip: Keep your visualizations simple and focused on the key insights.
📌 Step 5: Provide Recommendations
Finally, based on your analysis, provide actionable recommendations to the business.
For example:
“Focus promotions on Region X, where sales are consistently lower than other regions.”
“Increase marketing spend for the high-performing products.”
Free Resources for business analysts
👇👇
https://t.me/analystcommunity
Share with credits: https://t.me/sqlspecialist
Hope it helps :)
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
