Data Science & Machine Learning
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free For collaborations: @love_data
Ko'proq ko'rsatish๐ Telegram kanali Data Science & Machine Learning analitikasi
Data Science & Machine Learning (@datasciencefun) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 75 730 obunachidan iborat bo'lib, Taสผlim toifasida 2 116-o'rinni va Hindiston mintaqasida 4 343-o'rinni egallagan.
๐ Auditoriya koโrsatkichlari va dinamika
ะฝะตะฒัะดะพะผะพ sanasidan buyon loyiha tez oโsib, 75 730 obunachiga ega boโldi.
13 Iyun, 2026 dagi oxirgi maโlumotlarga koโra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 954 ga, soโnggi 24 soatda esa 41 ga oโzgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya oโrtacha 3.60% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.39% ini tashkil etuvchi reaksiyalarni toโplaydi.
- Post qamrovi: Har bir post oโrtacha 2 725 marta koโriladi; birinchi sutkada odatda 1 053 ta koโrish yigโiladi.
- Reaksiyalar va oโzaro taโsir: Auditoriya faol: har bir postga oโrtacha 5 ta reaksiya keladi.
- Tematik yoโnalishlar: Kontent learning, accuracy, distribution, panda, dataset kabi asosiy mavzularga jamlangan.
๐ Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida taโriflaydi:
โJoin this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free
For collaborations: @love_dataโ
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.
SELECT, FROM, WHERE, etc., to perform operations on the data.
- SQL keywords are not case-sensitive, but it's common to write them in uppercase (e.g., SELECT, FROM).
3. SQL Data Types
Databases store data in different formats. The most common data types are:
- INT (Integer): For whole numbers.
- VARCHAR(n) or TEXT: For storing text data.
- DATE: For dates.
- DECIMAL: For precise decimal values, often used in financial calculations.
4. Basic SQL Queries
Here are some fundamental SQL operations:
- SELECT Statement: Used to retrieve data from a database.
SELECT column1, column2 FROM table_name;
- WHERE Clause: Filters data based on conditions.
SELECT * FROM table_name WHERE condition;
- ORDER BY: Sorts data in ascending (ASC) or descending (DESC) order.
SELECT column1, column2 FROM table_name ORDER BY column1 ASC;
- LIMIT: Limits the number of rows returned.
SELECT * FROM table_name LIMIT 5;
5. Filtering Data with WHERE Clause
The WHERE clause helps you filter data based on a condition:
SELECT * FROM employees WHERE salary > 50000;
You can use comparison operators like:
- =: Equal to
- >: Greater than
- <: Less than
- LIKE: For pattern matching
6. Aggregating Data
SQL provides functions to summarize or aggregate data:
- COUNT(): Counts the number of rows.
SELECT COUNT(*) FROM table_name;
- SUM(): Adds up values in a column.
SELECT SUM(salary) FROM employees;
- AVG(): Calculates the average value.
SELECT AVG(salary) FROM employees;
- GROUP BY: Groups rows that have the same values into summary rows.
SELECT department, AVG(salary) FROM employees GROUP BY department;
7. Joins in SQL
Joins combine data from two or more tables:
- INNER JOIN: Retrieves records with matching values in both tables.
SELECT employees.name, departments.department
FROM employees
INNER JOIN departments
ON employees.department_id = departments.id;
- LEFT JOIN: Retrieves all records from the left table and matched records from the right table.
SELECT employees.name, departments.department
FROM employees
LEFT JOIN departments
ON employees.department_id = departments.id;
8. Inserting Data
To add new data to a table, you use the INSERT INTO statement:
INSERT INTO employees (name, position, salary) VALUES ('John Doe', 'Analyst', 60000);
9. Updating Data
You can update existing data in a table using the UPDATE statement:
UPDATE employees SET salary = 65000 WHERE name = 'John Doe';
10. Deleting Data
To remove data from a table, use the DELETE statement:
DELETE FROM employees WHERE name = 'John Doe';
Here you can find essential SQL Interview Resources๐
https://t.me/DataSimplifier
Like this post if you need more ๐โค๏ธ
Hope it helps :)a = "10" โ Variable a is assigned the string "10".
b = a โ Variable b also holds the string "10" (but it's not used afterward).
a = a * 2 โ Since a is a string, multiplying it by an integer results in string repetition.
"10" * 2 results in "1010"
print(a) โ prints the new value of a, which is "1010".
โ
Correct answer: D. 1010
Endi mavjud! Telegram Tadqiqoti 2025 โ yilning asosiy insaytlari 
