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 715 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 715 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.
SELECT e.EID, ed.EDOB
FROM (
SELECT EID
FROM Employee
WHERE ESalary % 2 <> 0
) e
JOIN empdetails ed ON e.EID = ed.EID;
Explanation of the query :-
Filter Employees with Odd Salaries:
The subquery SELECT EID FROM Employee WHERE ESalary % 2 <> 0 filters out Employee IDs (EID) where the salary (ESalary) is an odd number. The modulo operator % checks if ESalary divided by 2 leaves a remainder (<>0).
Merge with empdetails:
The main query then takes the filtered Employee IDs from the subquery and performs a join with the empdetails table using the EID column. This retrieves the date of birth (EDOB) for these employees.
Hope this helps you 😊from sklearn.preprocessing import StandardScaler scaler = StandardScaler() df[['column']] = scaler.fit_transform(df[['column']])
What is the use of GROUP BY in SQL?
GROUP BY is used to group rows that have the same values into summary rows, often with aggregate functions like COUNT, SUM, AVG, etc.
Example:
SELECT department, AVG(salary) FROM employees GROUP BY department;
This will calculate the average salary for each department.
What is the significance of normalization in SQL?
Normalization is the process of organizing data in a way that reduces redundancy and dependency by dividing large tables into smaller ones and using relationships (foreign keys).
1st Normal Form (1NF): Ensures atomicity (no multi-valued fields).
2nd Normal Form (2NF): Ensures that all non-key attributes are fully dependent on the primary key.
3rd Normal Form (3NF): Ensures that no transitive dependencies exist (non-key attributes do not depend on other non-key attributes).
How do you handle time series data in Python?
Handling time series data in Python involves several steps:
Converting to DateTime format: df['date'] = pd.to_datetime(df['date'])
Resampling: To aggregate data at different frequencies:
df.set_index('date').resample('M').sum()
Decomposition: Split the time series into trend, seasonality, and residuals:
from statsmodels.tsa.seasonal
import seasonal_decompose decomposition = seasonal_decompose(df['value'], model='additive', period=12) decomposition.plot()
Plotting: Use libraries like Matplotlib and Seaborn to visualize trends over time.
What are the advantages of using Power BI over Excel?
Data Handling: Power BI can handle much larger datasets (millions of rows) compared to Excel.
Data Modeling: Power BI allows creating complex data models and relationships between tables, which is harder to manage in Excel.
Interactive Visualizations: Power BI offers interactive dashboards with drill-down capabilities.
Advanced Features: Power BI supports advanced analytics, DAX for custom calculations, and integration with other tools like Azure and SharePoint.
Scheduled Refresh: Power BI allows automatic data refresh from connected sources, while in Excel, this needs to be done manually.
Like this post for if you want me to continue the interview series 👍♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
