es
Feedback
Data Analytics

Data Analytics

Ir al canal en Telegram

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 744 suscriptores, ocupando la posición 1 114 en la categoría Tecnologías y Aplicaciones y el puesto 2 320 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 744 suscriptores.

Según los últimos datos del 28 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 541, y en las últimas 24 horas de -27, 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.47%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 1.35% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 2 706 visualizaciones. En el primer día suele acumular 1 486 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 7.
  • 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 29 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.

109 744
Suscriptores
-2724 horas
+1457 días
+54130 días
Archivo de publicaciones
How To Choose the Right Data Visualization.pdf4.76 KB

Which of the following is not a python library?
Anonymous voting

Best way to learn a tool?
Anonymous voting

Pandas Basic to Intermediate Cheat Sheet 👇👇 https://t.me/learndataanalysis/183

Which of the following is one of the view in Power BI Desktop?
Anonymous voting

Which of the following is not explicitly used for Data Visualization?
Anonymous voting

Which of the following is not a component of Power BI?
Anonymous voting

Netflix Backend Architecture
Netflix Backend Architecture

1. What is a Self-Join? A self-join is a type of join that can be used to connect two tables. As a result, it is a unary relationship. Each row of the table is attached to itself and all other rows of the same table in a self-join. As a result, a self-join is mostly used to combine and compare rows from the same database table. 2. What is OLTP? OLTP, or online transactional processing, allows huge groups of people to execute massive amounts of database transactions in real time, usually via the internet. A database transaction occurs when data in a database is changed, inserted, deleted, or queried. 3. What is the difference between joining and blending in Tableau? Joining term is used when you are combining data from the same source, for example, worksheet in an Excel file or tables in Oracle databaseWhile blending requires two completely defined data sources in your report. 4. How to prevent someone from copying the cell from your worksheet in excel? If you want to protect your worksheet from being copied, go into Menu bar > Review > Protect sheet > Password. By entering password you can prevent your worksheet from getting copied.

1. What is the difference between the RANK() and DENSE_RANK() functions? The RANK() function in the result set defines the rank of each row within your ordered partition. If both rows have the same rank, the next number in the ranking will be the previous rank plus a number of duplicates. If we have three records at rank 4, for example, the next level indicated is 7. The DENSE_RANK() function assigns a distinct rank to each row within a partition based on the provided column value, with no gaps. If we have three records at rank 4, for example, the next level indicated is 5. 2. Explain One-hot encoding and Label Encoding. How do they affect the dimensionality of the given dataset? One-hot encoding is the representation of categorical variables as binary vectors. Label Encoding is converting labels/words into numeric form. Using one-hot encoding increases the dimensionality of the data set. Label encoding doesn’t affect the dimensionality of the data set. One-hot encoding creates a new variable for each level in the variable whereas, in Label encoding, the levels of a variable get encoded as 1 and 0. 3. Explain the Difference Between Tableau Worksheet, Dashboard, Story, and Workbook in Tableau? Tableau uses a workbook and sheet file structure, much like Microsoft Excel. A workbook contains sheets, which can be a worksheet, dashboard, or a story. A worksheet contains a single view along with shelves, legends, and the Data pane. A dashboard is a collection of views from multiple worksheets. A story contains a sequence of worksheets or dashboards that work together to convey information. 4. How can you split a column into 2 or more columns? You can split a column into 2 or more columns by following the below steps: 1. Select the cell that you want to split. Then, navigate to the Data tab, after that, select Text to Columns. 2. Select the delimiter. 3. Choose the column data format and select the destination you want to display the split. 4. The final output will look like below where the text is split into multiple columns.

SQL HANDWRITTEN NOTES 👇👇 https://t.me/learndataanalysis/167?single

1. What is the difference between SQL and MySQL? SQL is a standard language for retrieving and manipulating structured databases. On the contrary, MySQL is a relational database management system, like SQL Server, Oracle or IBM DB2, that is used to manage SQL databases. 2. What is a Cross-Join? Cross join can be defined as a cartesian product of the two tables included in the join. The table after join contains the same number of rows as in the cross-product of the number of rows in the two tables. If a WHERE clause is used in cross join then the query will work like an INNER JOIN. 3. What is a Stored Procedure? A stored procedure is a subroutine available to applications that access a relational database management system (RDBMS). Such procedures are stored in the database data dictionary. The sole disadvantage of stored procedure is that it can be executed nowhere except in the database and occupies more memory in the database server. 4. What is Pattern Matching in SQL? SQL pattern matching provides for pattern search in data if you have no clue as to what that word should be. This kind of SQL query uses wildcards to match a string pattern, rather than writing the exact word. The LIKE operator is used in conjunction with SQL Wildcards to fetch the required information.

1. What are Query and Query language? A query is nothing but a request sent to a database to retrieve data or information. The required data can be retrieved from a table or many tables in the database. Query languages use various types of queries to retrieve data from databases. SQL, Datalog, and AQL are a few examples of query languages; however, SQL is known to be the widely used query language. 2. What are Superkey and candidate key? A super key may be a single or a combination of keys that help to identify a record in a table. Know that Super keys can have one or more attributes, even though all the attributes are not necessary to identify the records. A candidate key is the subset of Superkey, which can have one or more than one attributes to identify records in a table. Unlike Superkey, all the attributes of the candidate key must be helpful to identify the records. 3. What do you mean by buffer pool and mention its benefits? A buffer pool in SQL is also known as a buffer cache. All the resources can store their cached data pages in a buffer pool. The size of the buffer pool can be defined during the configuration of an instance of SQL Server. The following are the benefits of a buffer pool: Increase in I/O performance Reduction in I/O latency Increase in transaction throughput Increase in reading performance 4. What is the difference between Zero and NULL values in SQL? When a field in a column doesn’t have any value, it is said to be having a NULL value. Simply put, NULL is the blank field in a table. It can be considered as an unassigned, unknown, or unavailable value. On the contrary, zero is a number, and it is an available, assigned, and known value.

1. What is denormalization? Denormalization is the opposite of normalization; redundant data is added to speed up complex queries that have multiple tables that need to be joined. Optimization of the read performance of a database is attempted by adding or grouping redundant copies of data. 2. What are the applications of SQL? The major applications of SQL include: • Writing data integration scripts • Setting and running analytical queries • Retrieving subsets of information within a database for analytics applications and transaction processing • Adding, updating, and deleting rows and columns of data in a databases 3. What is BLOB and TEXT in MySQL? BLOB stands for Binary Huge Objects and can be used to store binary data, whereas TEXT may be used to store a large number of strings. BLOB may be used to store binary data, which includes images, movies, audio, and applications. TEXT values behave similarly to a character string or a non-binary string. 4. What is a DEFAULT constraint? A default constraint is used to define a default value for a column so that it is added to all new records if no other value is specified. For example, if we assign a default constraint for the E_salary column in the following table and set the default value to 85000, then all the entries of this column will have the default value of 85000, unless no other value has been assigned during the insertion.

1. What is a Self-Join? A self-join is a type of join that can be used to connect two tables. As a result, it is a unary relationship. Each row of the table is attached to itself and all other rows of the same table in a self-join. As a result, a self-join is mostly used to combine and compare rows from the same database table. 2. What is OLTP? OLTP, or online transactional processing, allows huge groups of people to execute massive amounts of database transactions in real time, usually via the internet. A database transaction occurs when data in a database is changed, inserted, deleted, or queried. 3. What is the difference between joining and blending in Tableau? Joining term is used when you are combining data from the same source, for example, worksheet in an Excel file or tables in Oracle databaseWhile blending requires two completely defined data sources in your report. 4. How to prevent someone from copying the cell from your worksheet in excel? If you want to protect your worksheet from being copied, go into Menu bar > Review > Protect sheet > Password. By entering password you can prevent your worksheet from getting copied.

1. Give an overview of the fact and dimensions of the table? Facts are numeric measures of data. They are stored in fact tables. Fact tables store that type of data that will be analyzed by dimension tables. Fact tables have foreign keys associating with dimension tables. Dimensions are descriptive attributes of data. Those will be stored in the dimensions table. For example, customer’s information like name, number, and email will be stored in the dimension table. 2. Explain the limitation of context filters in Tableau? Whenever we set a context filter, Tableau generates a temp table that needs to refresh each and every time, whenever the view is triggered. So, if the context filter is changed in the database, it needs to recompute the temp table, so the performance will be decreased. 3. What is the difference between published data and embedded data sources? The published data source contains connection information that is independent of workbooks and can be used by multiple workbooks. The embedded data source contains connection information but it is associated with the workbooks. 4. Explain the disaggregation and aggregation of data in Tableau? Aggregation → The process of summarizing the data and viewing a single numeric value is called aggregation. Example – sum/avg of salary for each employee Disaggregation →The process of viewing each transaction for analyzing all the measures both dependently and independently. Example – individual salary transactions for each employee.

1. What are the different subsets of SQL? Data Definition Language (DDL) – It allows you to perform various operations on the database such as CREATE, ALTER, and DELETE objects. Data Manipulation Language(DML) – It allows you to access and manipulate data. It helps you to insert, update, delete and retrieve data from the database. Data Control Language(DCL) – It allows you to control access to the database. Example – Grant, Revoke access permissions. 2. List the different types of relationships in SQL. There are different types of relations in the database: One-to-One – This is a connection between two tables in which each record in one table corresponds to the maximum of one record in the other. One-to-Many and Many-to-One – This is the most frequent connection, in which a record in one table is linked to several records in another. Many-to-Many – This is used when defining a relationship that requires several instances on each sides. Self-Referencing Relationships – When a table has to declare a connection with itself, this is the method to employ. 3. How to create empty tables with the same structure as another table? To create empty tables: Using the INTO operator to fetch the records of one table into a new table while setting a WHERE clause to false for all entries, it is possible to create empty tables with the same structure. As a result, SQL creates a new table with a duplicate structure to accept the fetched entries, but nothing is stored into the new table since the WHERE clause is active. 4. What is Normalization and what are the advantages of it? Normalization in SQL is the process of organizing data to avoid duplication and redundancy. Some of the advantages are: Better Database organization More Tables with smaller rows Efficient data access Greater Flexibility for Queries Quickly find the information Easier to implement Security

1. What is the difference between SQL and MySQL? SQL is a standard language for retrieving and manipulating structured databases. On the contrary, MySQL is a relational database management system, like SQL Server, Oracle or IBM DB2, that is used to manage SQL databases. 2. What is a Cross-Join? Cross join can be defined as a cartesian product of the two tables included in the join. The table after join contains the same number of rows as in the cross-product of the number of rows in the two tables. If a WHERE clause is used in cross join then the query will work like an INNER JOIN. 3. What is a Stored Procedure? A stored procedure is a subroutine available to applications that access a relational database management system (RDBMS). Such procedures are stored in the database data dictionary. The sole disadvantage of stored procedure is that it can be executed nowhere except in the database and occupies more memory in the database server. 4. What is Pattern Matching in SQL? SQL pattern matching provides for pattern search in data if you have no clue as to what that word should be. This kind of SQL query uses wildcards to match a string pattern, rather than writing the exact word. The LIKE operator is used in conjunction with SQL Wildcards to fetch the required information.

Which of the following is used to define function in python?
Anonymous voting

1. Does SQL support programming language features? It is true that SQL is a language, but it does not support programming as it is not a programming language, it is a command language. We do not have conditional statements in SQL like for loops or if..else, we only have commands which we can use to query, update, delete, etc. data in the database. SQL allows us to manipulate data in a database. 2. What is a trigger? Trigger is a statement that a system executes automatically when there is any modification to the database. In a trigger, we first specify when the trigger is to be executed and then the action to be performed when the trigger executes. Triggers are used to specify certain integrity constraints and referential constraints that cannot be specified using the constraint mechanism of SQL. 3. What are aggregate and scalar functions? For doing operations on data SQL has many built-in functions, they are categorized into two categories and further sub-categorized into seven different functions under each category. The categories are: Aggregate functions: These functions are used to do operations from the values of the column and a single value is returned. Scalar functions: These functions are based on user input, these too return a single value. 4. Define SQL Order by the statement? The ORDER BY statement in SQL is used to sort the fetched data in either ascending or descending according to one or more columns. By default ORDER BY sorts the data in ascending order. We can use the keyword DESC to sort the data in descending order and the keyword ASC to sort in ascending order.