Data Analytics & AI | SQL Interviews | Power BI Resources
๐Explore the fascinating world of Data Analytics & Artificial Intelligence ๐ป Best AI tools, free resources, and expert advice to land your dream tech job. Admin: @coderfun Buy ads: https://telega.io/c/Data_Visual
Ko'proq ko'rsatish๐ Telegram kanali Data Analytics & AI | SQL Interviews | Power BI Resources analitikasi
Data Analytics & AI | SQL Interviews | Power BI Resources (@data_visual) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 27 206 obunachidan iborat bo'lib, Taสผlim toifasida 7 213-o'rinni va Hindiston mintaqasida 15 999-o'rinni egallagan.
๐ Auditoriya koโrsatkichlari va dinamika
ะฝะตะฒัะดะพะผะพ sanasidan buyon loyiha tez oโsib, 27 206 obunachiga ega boโldi.
13 Iyun, 2026 dagi oxirgi maโlumotlarga koโra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 226 ga, soโnggi 24 soatda esa 5 ga oโzgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya oโrtacha 3.99% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining N/A% ini tashkil etuvchi reaksiyalarni toโplaydi.
- Post qamrovi: Har bir post oโrtacha 0 marta koโriladi; birinchi sutkada odatda 0 ta koโrish yigโiladi.
- Reaksiyalar va oโzaro taโsir: Auditoriya faol: har bir postga oโrtacha 0 ta reaksiya keladi.
- Tematik yoโnalishlar: Kontent |--, sql, learning, analytic, visualization kabi asosiy mavzularga jamlangan.
๐ Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida taโriflaydi:
โ๐Explore the fascinating world of Data Analytics & Artificial Intelligence
๐ป Best AI tools, free resources, and expert advice to land your dream tech job.
Admin: @coderfun
Buy ads: https://telega.io/c/Data_Visualโ
Yuqori yangilanish chastotasi (oxirgi maโlumot 14 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli boโlib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taสผlim toifasidagi muhim taโsir nuqtasiga aylantirishini koโrsatadi.
CASE statement to handle NULL values, use COALESCE():
SELECT COALESCE(name, 'Unknown') FROM users;
This returns the first non-null value in the list.
2๏ธโฃ Generate Sequential Numbers Without a Table
Need a sequence of numbers but donโt have a numbers table? Use GENERATE_SERIES (PostgreSQL) or WITH RECURSIVE (MySQL 8+):
SELECT generate_series(1, 10);
3๏ธโฃ Find Duplicates Quickly
Easily identify duplicate values with GROUP BY and HAVING:
SELECT email, COUNT(*)
FROM users
GROUP BY email
HAVING COUNT(*) > 1;
4๏ธโฃ Randomly Select Rows
Want a random sample of data? Use:
- PostgreSQL: ORDER BY RANDOM()
- MySQL: ORDER BY RAND()
- SQL Server: ORDER BY NEWID()
5๏ธโฃ Pivot Data Without PIVOT (For Databases Without It)
Use CASE with SUM() to pivot data manually:
SELECT
user_id,
SUM(CASE WHEN status = 'active' THEN 1 ELSE 0 END) AS active_count,
SUM(CASE WHEN status = 'inactive' THEN 1 ELSE 0 END) AS inactive_count
FROM users
GROUP BY user_id;
6๏ธโฃ Efficiently Get the Last Inserted ID
Instead of running a separate SELECT, use:
- MySQL: SELECT LAST_INSERT_ID();
- PostgreSQL: RETURNING id;
- SQL Server: SELECT SCOPE_IDENTITY();
Like for more โค๏ธ๐ฉโ๐ผ: โWe want to decrease user churn by 5% this quarterโWe say that a user churns when she decides to stop using Uber. But why? There are different reasons why a user would stop using Uber. For example: 1. โLyft is offering better prices for that geoโ (pricing problem) 2. โCar waiting times are too longโ (supply problem) 3. โThe Android version of the app is very slowโ (client-app performance problem) You build this list โ by asking the right questions to the rest of the team. You need to understand the userโs experience using the app, from HER point of view. Typically there is no single reason behind churn, but a combination of a few of these. The question is: which one should you focus on? This is when you pull out your great data science skills and EXPLORE THE DATA ๐. You explore the data to understand how plausible each of the above explanations is. The output from this analysis is a single hypothesis you should consider further. Depending on the hypothesis, you will solve the data science problem differently. For exampleโฆ Scenario 1: โLyft Is Offering Better Pricesโ (Pricing Problem) One solution would be to detect/predict the segment of users who are likely to churn (possibly using an ML Model) and send personalized discounts via push notifications. To test your solution works, you will need to run an A/B test, so you will split a percentage of Uber users into 2 groups: The A group. No user in this group will receive any discount. The B group. Users from this group that the model thinks are likely to churn, will receive a price discount in their next trip. You could add more groups (e.g. C, D, Eโฆ) to test different pricing points.
In a nutshell1. Translating business problems into data science problems is the key data science skill that separates a senior from a junior data scientist. 2. Ask the right questions, list possible solutions, and explore the data to narrow down the list to one. 3. Solve this one data science problem
Endi mavjud! Telegram Tadqiqoti 2025 โ yilning asosiy insaytlari 
