Data Analytics
Perfect channel to learn Data Analytics Learn SQL, Python, Alteryx, Tableau, Power BI and many more For Promotions: @coderfun @love_data
Ko'proq ko'rsatish๐ Telegram kanali Data Analytics analitikasi
Data Analytics (@sqlspecialist) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 109 708 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 1 117-o'rinni va Hindiston mintaqasida 2 334-o'rinni egallagan.
๐ Auditoriya koโrsatkichlari va dinamika
ะฝะตะฒัะดะพะผะพ sanasidan buyon loyiha tez oโsib, 109 708 obunachiga ega boโldi.
25 Iyun, 2026 dagi oxirgi maโlumotlarga koโra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 596 ga, soโnggi 24 soatda esa 55 ga oโzgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya oโrtacha 2.69% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 0.78% ini tashkil etuvchi reaksiyalarni toโplaydi.
- Post qamrovi: Har bir post oโrtacha 2 948 marta koโriladi; birinchi sutkada odatda 853 ta koโrish yigโiladi.
- Reaksiyalar va oโzaro taโsir: Auditoriya faol: har bir postga oโrtacha 8 ta reaksiya keladi.
- Tematik yoโnalishlar: Kontent row, sql, analytic, analyst, visualization kabi asosiy mavzularga jamlangan.
๐ Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida taโriflaydi:
โPerfect channel to learn Data Analytics
Learn SQL, Python, Alteryx, Tableau, Power BI and many more
For Promotions: @coderfun @love_dataโ
Yuqori yangilanish chastotasi (oxirgi maโlumot 26 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli boโlib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim taโsir nuqtasiga aylantirishini koโrsatadi.
CREATE PROCEDURE GetEmployeeDetails AS BEGIN SELECT * FROM Employees; END;
๐ Executing the Procedure
EXEC GetEmployeeDetails;
๐ Stored Procedure with Parameters
CREATE PROCEDURE GetEmployeeByID (@EmpID INT) AS BEGIN SELECT * FROM Employees WHERE EmployeeID = @EmpID; END;
๐ Executing with a Parameter
EXEC GetEmployeeByID 101;
3. What Are SQL Functions?
Functions return a single value and are used inside queries. Unlike stored procedures, functions cannot modify the database.
๐ Creating a Function
CREATE FUNCTION GetTotalSalary() RETURNS INT AS BEGIN DECLARE @TotalSalary INT; SELECT @TotalSalary = SUM(Salary) FROM Employees; RETURN @TotalSalary; END;
๐ Calling the Function
SELECT dbo.GetTotalSalary();
4. Differences: Stored Procedures vs Functions
โ Stored Procedures: Perform multiple actions, support transactions, and can modify data.
โ Functions: Return a value, are used inside queries, and cannot change database state.
โ
Action Plan for Today:
1๏ธโฃ Create a Stored Procedure that retrieves filtered data.
2๏ธโฃ Write a Function that calculates an aggregate value.
3๏ธโฃ Compare performance differences between functions and stored procedures.
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 Month, SUM(CASE WHEN Product = 'Shoes' THEN Sales ELSE 0 END) AS Shoes, SUM(CASE WHEN Product = 'Shirts' THEN Sales ELSE 0 END) AS Shirts FROM Sales GROUP BY Month;
3. What is Unpivoting in SQL?
Unpivoting converts columns back into rows, which is useful for normalizing data.
Example: If you have sales data stored in separate columns (Shoes, Shirts), but you need a column named Product instead, use:
SELECT Month, Product, Sales FROM SalesTable UNPIVOT (Sales FOR Product IN (Shoes, Shirts)) AS unpvt;
4. When to Use Pivot and Unpivot?
Pivot when you need structured reports with categories as columns.
Unpivot when working with dynamic columns and data normalization.
โ
Action Plan for Today:
1๏ธโฃ Write a PIVOT query for summarizing data.
2๏ธโฃ Use UNPIVOT to transform columns into rows.
3๏ธโฃ Experiment with SUM, COUNT, and AVG while pivoting data.
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 CustomerID FROM Orders_A
UNION
SELECT CustomerID FROM Orders_B; -- Removes duplicates
SELECT CustomerID FROM Orders_A
UNION ALL
SELECT CustomerID FROM Orders_B; -- Keeps duplicates
12. What are common DAX functions in Power BI?
Answer:
DAX (Data Analysis Expressions) is used in Power BI for calculations.
Common DAX functions include:
SUM() โ Adds up values in a column.
AVERAGE() โ Finds the mean value.
COUNT() โ Counts the number of rows.
CALCULATE() โ Modifies a measure based on conditions.
FILTER() โ Returns a subset of data.
Example:
TotalSales = SUM(Sales[Amount]) FilteredSales = CALCULATE(SUM(Sales[Amount]), Sales[Region] = "North")
13. How do you use VLOOKUP in Excel?
Answer:
VLOOKUP searches for a value in the first column of a range and returns a value from another column.
Syntax:
=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
Example:
To find the price of a product in a table:
=VLOOKUP("ProductA", A2:C10, 2, FALSE)
14. What is the difference between a Heatmap and a Scatter Plot?
Answer:
Heatmap: Uses color intensity to represent values across a matrix. Used for correlation analysis.
Scatter Plot: Shows relationships between two continuous variables using dots. Used for trend analysis.
Example:
A Heatmap can show sales performance by region and product category.
A Scatter Plot can show sales vs. profit for different stores.
15. How do you read a CSV file into Pandas in Python?
Answer:
You can read a CSV file using pandas.read_csv():
import pandas as pd df = pd.read_csv("data.csv") print(df.head()) # Displays first 5 rows
To handle missing values:
df = pd.read_csv("data.csv", na_values=["NA", "Missing"])
To select specific columns:
df = pd.read_csv("data.csv", usecols=["Name", "Sales"])
I have curated best 80+ top-notch Data Analytics Resources ๐๐
https://t.me/DataSimplifier
Like this post for if you want me to continue the interview series ๐โฅ๏ธ
Share with credits: https://t.me/sqlspecialist
Hope it helps :)BACKUP DATABASE mydb TO DISK = 'C:\backups\mydb_full.bak';
โ
Differential Backup
Backs up only changes made since the last full backup.
Faster than a full backup.
Example:
BACKUP DATABASE mydb TO DISK = 'C:\backups\mydb_diff.bak' WITH DIFFERENTIAL;
โ
Transaction Log Backup
Backs up the transaction logs, allowing point-in-time recovery.
Example: BACKUP LOG mydb TO DISK = 'C:\backups\mydb_log.trn';
3. How to Restore a Database
๐ Restore a Full Backup
RESTORE DATABASE mydb FROM DISK = 'C:\backups\mydb_full.bak';
๐ Restore with Differential Backup
RESTORE DATABASE mydb FROM DISK = 'C:\backups\mydb_full.bak' WITH NORECOVERY; RESTORE DATABASE mydb FROM DISK = 'C:\backups\mydb_diff.bak' WITH RECOVERY;
4. Best Practices for Database Backups
โ Schedule backups regularly (daily or weekly).
โ Store backups in multiple locations (local + cloud).
โ Automate backups to avoid manual errors.
โ Test your backups by restoring to a test database.
โ
Action Plan for Today:
1๏ธโฃ Identify the best backup strategy for your database.
2๏ธโฃ Set up an automated full backup.
3๏ธโฃ Try restoring a backup to check if it works correctly.
Here you can find SQL Interview Resources๐
https://t.me/sqlanalyst
Like this post if you want me to continue this SQL series ๐โฅ๏ธ
Share with credits: https://t.me/sqlspecialist
Hope it helps :)CREATE INDEX idx_customer_name ON customers (customer_name);
๐ Create a Composite Index
CREATE INDEX idx_order ON orders (customer_id, order_date);
๐ Drop an Index
DROP INDEX idx_customer_name;
4. When to Use Indexes?
โ Use indexes on frequently searched columns.
โ Use indexes on JOIN and WHERE clause columns.
โ Avoid indexing small tables (full table scans are faster).
โ Avoid too many indexes (they slow down INSERT, UPDATE, DELETE).
โ
Action Plan for Today:
1๏ธโฃ Identify queries in your database that could benefit from an index.
2๏ธโฃ Create a non-clustered index on a table and check the performance.
3๏ธโฃ Drop unnecessary indexes and observe the difference.
๐ SQL 30 Days Challenge
Here you can find SQL Interview Resources๐
https://t.me/sqlanalyst
Like this post if you want me to continue this SQL series ๐โฅ๏ธ
Share with credits: https://t.me/sqlspecialist
Hope it helps :)-- WHERE filters before aggregation SELECT * FROM Sales WHERE Region = 'North'; -- HAVING filters after aggregation SELECT Region, SUM(Sales) AS TotalSales FROM Sales GROUP BY Region HAVING SUM(Sales) > 50000;
7. What are the different types of filters in Power BI?
Answer:
Power BI provides different types of filters for refining data:
Visual-level filters โ Apply to a single visual.
Page-level filters โ Apply to all visuals on a report page.
Report-level filters โ Apply to the entire report.
Drillthrough filters โ Allow users to focus on specific data in another page.
Top N filters โ Show only the top N records based on a measure.
Example: In Power BI Desktop, you can apply filters using the Filters Pane.
8. How do you remove duplicate values in Excel?
Answer:
You can remove duplicates in Excel using:
Remove Duplicates feature:
Select your data.
Go to Data โ Remove Duplicates and choose columns to check for duplicates.
Using a formula (COUNTIF method): =IF(COUNTIF(A:A, A2)>1, "Duplicate", "Unique")
Using Power Query:
Load data into Power Query Editor โ Remove Duplicates option.
9. What is the difference between a Bar Chart and a Histogram?
Answer:
Bar Chart represents categorical data with discrete bars.
Histogram represents continuous data and shows frequency distribution.
Example:
A Bar Chart can show sales by product category.
A Histogram can show age distribution in a population dataset.
10. How do you handle missing values in Python using Pandas?
Answer:
You can handle missing values using:
Drop missing values:
df.dropna() # Removes rows with missing values
Fill missing values:
df.fillna(0) # Replaces NaN with 0
Fill with column mean/median/mode:
df['Column'].fillna(df['Column'].mean(), inplace=True)
Interpolate missing values:
df.interpolate(method='linear')
I have curated best 80+ top-notch Data Analytics Resources ๐๐
https://t.me/DataSimplifier
Like this post for if you want me to continue the interview series ๐โฅ๏ธ
Share with credits: https://t.me/sqlspecialist
Hope it helps :)
Endi mavjud! Telegram Tadqiqoti 2025 โ yilning asosiy insaytlari 
