Data Analytics – Telegram
Data Analytics
108K subscribers
129 photos
2 files
797 links
Perfect channel to learn Data Analytics

Learn SQL, Python, Alteryx, Tableau, Power BI and many more

For Promotions: @coderfun @love_data
Download Telegram
Use of Machine Learning in Data Analytics
8
SQL Joins
10👍1
SQL Cheatsheet 📝

This SQL cheatsheet is designed to be your quick reference guide for SQL programming. Whether you’re a beginner learning how to query databases or an experienced developer looking for a handy resource, this cheatsheet covers essential SQL topics.

1. Database Basics
- CREATE DATABASE db_name;
- USE db_name;

2. Tables
- Create Table: CREATE TABLE table_name (col1 datatype, col2 datatype);
- Drop Table: DROP TABLE table_name;
- Alter Table: ALTER TABLE table_name ADD column_name datatype;

3. Insert Data
- INSERT INTO table_name (col1, col2) VALUES (val1, val2);

4. Select Queries
- Basic Select: SELECT * FROM table_name;
- Select Specific Columns: SELECT col1, col2 FROM table_name;
- Select with Condition: SELECT * FROM table_name WHERE condition;

5. Update Data
- UPDATE table_name SET col1 = value1 WHERE condition;

6. Delete Data
- DELETE FROM table_name WHERE condition;

7. Joins
- Inner Join: SELECT * FROM table1 INNER JOIN table2 ON table1.col = table2.col;
- Left Join: SELECT * FROM table1 LEFT JOIN table2 ON table1.col = table2.col;
- Right Join: SELECT * FROM table1 RIGHT JOIN table2 ON table1.col = table2.col;

8. Aggregations
- Count: SELECT COUNT(*) FROM table_name;
- Sum: SELECT SUM(col) FROM table_name;
- Group By: SELECT col, COUNT(*) FROM table_name GROUP BY col;

9. Sorting & Limiting
- Order By: SELECT * FROM table_name ORDER BY col ASC|DESC;
- Limit Results: SELECT * FROM table_name LIMIT n;

10. Indexes
- Create Index: CREATE INDEX idx_name ON table_name (col);
- Drop Index: DROP INDEX idx_name;

11. Subqueries
- SELECT * FROM table_name WHERE col IN (SELECT col FROM other_table);

12. Views
- Create View: CREATE VIEW view_name AS SELECT * FROM table_name;
- Drop View: DROP VIEW view_name;

Here you can find SQL Interview Resources👇
https://news.1rj.ru/str/DataSimplifier

Share with credits: https://news.1rj.ru/str/sqlspecialist

Hope it helps :)
7
Beware of any recruiter who asks for money for interview scheduling, certification, or references etc. This is a clear sign of a scam and a fake hiring process.

- No Payment Required: In the IT industry, you should never have to make any kind of payment to get hired. Legitimate companies and recruiters do not charge candidates for job opportunities.

- Third-Party Agencies: Even when you are working with third-party agencies, these agencies charge the employer (their clients), not you.

Red Flags to Identify Scams:

- Payment Requests: If a recruiter asks for money at any stage, it is likely a scam.

- Unverified Contacts: Be cautious if the recruiter’s contact information or company details cannot be verified.

- Pressure Tactics: Scammers often use urgency or pressure tactics to get you to pay quickly.

Always remember: never pay for a job opportunity. If a recruiter or agency asks for money, it is a scam. Stay away and protect yourself from fraudulent practices.
8👍4
Which of the following is the correct formula to find the sum of cells A1 to A10 in Excel?
Anonymous Quiz
6%
=ADD(A1:A10)
90%
=SUM(A1:A10)
1%
=PLUS(A1:A10)
2%
=TOTAL(A1:A10)
9
Which Excel feature allows you to rearrange rows based on the contents of a column?
Anonymous Poll
23%
Filtering
44%
Sorting
19%
Conditional Formatting
14%
Pivot Tables
5
Which symbol is used to make a cell reference absolute in Excel (so it doesn't change when you copy the formula)?
Anonymous Quiz
15%
&
15%
*
61%
$
8%
!
5👏2