Filter
Exclude
Time range
-
Near
1
1
51
3/ The dataset includes: Booking & arrival dates Number of guests & nights Distribution channels (e.g. OTA, Direct) Customer types (Transient, Corporate) Deposits, status (cancelled/checked out) Revenue & losses Itโ€™s detailed and rich. ๐Ÿ“Š #SQLForDataScience
1
12
Today marked another fantastic step in our deep tech journey! Participants in the Data Science & Machine Learning track got a practical class following a nationwide live session. They dived into an interactive introduction to SQL the bedrock of data manipulation. We're not just teaching; we're building the future of tech in Nigeria, covering crucial areas like: Data Science and Machine Learning. Advanced Data Analysis and Visualisation Computer Vision and Natural Language Processing. This week's session was buzzing with real-time problem-solving and query building. Huge props to the learners for their active participation! #DataAnalytics #SQLForDataScience #BrainBuildersIT #3MTT #DataScienceNigeria #DeepLearning #SkillsForFuture @3MTTNigeria @DeepTech_Ready @dsn_ai_network
1
2
12
245
๐Ÿ“œ SQL Cheat Sheet ๐Ÿ” Fetching Data (SELECT) SELECT * FROM table_name; SELECT column1, column2 FROM table_name; SELECT DISTINCT column FROM table_name; _____________________________________________________ ๐ŸŽฏ Filtering Data (WHERE) SELECT * FROM users WHERE age > 25; SELECT * FROM orders WHERE status = 'delivered'; _____________________________________________________ ๐Ÿงฉ Multiple Conditions (AND, OR, NOT) SELECT * FROM users WHERE age > 25 AND city = 'Delhi'; SELECT * FROM products WHERE price < 500 OR stock > 50; SELECT * FROM employees WHERE NOT department = 'HR'; _____________________________________________________ ๐Ÿ”ข Sorting Results (ORDER BY) SELECT * FROM employees ORDER BY salary DESC; SELECT * FROM products ORDER BY price ASC, name DESC; _____________________________________________________ ๐ŸŽ› Limiting & Skipping (LIMIT, OFFSET) SELECT * FROM products LIMIT 5; SELECT * FROM orders LIMIT 10 OFFSET 5; _________________________________________________________ ๐Ÿ— Grouping Data (GROUP BY, HAVING) SELECT department, COUNT(*) FROM employees GROUP BY department; SELECT category, AVG(price) FROM products GROUP BY category HAVING AVG(price) > 100; _________________________________________________________ ๐Ÿ† Aggregations (COUNT, SUM, AVG, MIN, MAX) SELECT COUNT(*) FROM users; SELECT SUM(price) FROM orders; SELECT AVG(salary) FROM employees; SELECT MIN(age), MAX(age) FROM users; _____________________________________________________ ๐Ÿ”„ Joining Tables (JOIN) ๐Ÿ‘ซ Inner Join SELECT users.name, orders.amount FROM users INNER JOIN orders ON users.id = orders.user_id; _____________________________________________________ ๐Ÿ“Œ Left Join SELECT users.name, orders.amount FROM users LEFT JOIN orders ON users.id = orders.user_id; _________________________________________________________ ๐Ÿ“Œ Right Join SELECT users.name, orders.amount FROM users RIGHT JOIN orders ON users.id = orders.user_id; _____________________________________________________ ๐Ÿ”— Full Join SELECT users.name, orders.amount FROM users FULL JOIN orders ON users.id = orders.user_id; _____________________________________________________ ๐Ÿ— Creating & Modifying Tables ๐Ÿ†• Creating a Table CREATE TABLE users ( id INT PRIMARY KEY, name VARCHAR(100), age INT, city VARCHAR(50) ); _____________________________________________________ ๐Ÿ”ง Altering a Table ALTER TABLE users ADD COLUMN email VARCHAR(100); ALTER TABLE users DROP COLUMN city; _____________________________________________________ ๐Ÿ“ Modifying Data โž• Inserting Data INSERT INTO users (id, name, age) VALUES (1, 'Amit', 30); _____________________________________________________ ๐Ÿ›  Updating Data UPDATE users SET age = 31 WHERE id = 1; _____________________________________________________ โŒ Deleting Data DELETE FROM users WHERE id = 1; DELETE FROM users; -- Delete all rows _____________________________________________________ ๐Ÿ› Indexes & Keys ๐Ÿ”‘ Primary Key CREATE TABLE users ( id INT PRIMARY KEY, name VARCHAR(100) ); _____________________________________________________ ๐Ÿ”‘ Foreign Key CREATE TABLE orders ( id INT PRIMARY KEY, user_id INT, FOREIGN KEY (user_id) REFERENCES users(id) ); _____________________________________________________ ๐Ÿš€ Creating Index CREATE INDEX idx_name ON users(name); _____________________________________________________ ๐Ÿ“œ Subqueries & Unions ๐Ÿ”„ Subquery SELECT name FROM users WHERE id IN (SELECT user_id FROM orders); _____________________________________________________ ๐Ÿ”— Union (Combine Results) SELECT name FROM customers UNION SELECT name FROM suppliers; SELECT name FROM customers UNION ALL SELECT name FROM suppliers; -- Includes duplicates _____________________________________________________ ๐Ÿ”ฅ Transactions BEGIN TRANSACTION; UPDATE accounts SET balance = balance - 500 WHERE id = 1; UPDATE accounts SET balance = balance 500 WHERE id = 2; COMMIT; -- Save changes ROLLBACK; -- Undo changes #SQL #SQLTutorial #LearnSQL #SQLQueries #SQLCheatSheet #Database #DataScience #Programming #Tech #Code #SQLForBeginners #SQLBasics #SQLTraining #LearnToCode #CodingForBeginners #AdvancedSQL #SQLPerformance #SQLOptimization #SQLBestPractices #SQLDatabase #MySQL #PostgreSQL #SQLServer #OracleSQL #NoSQL #DataAnalytics #SQLForDataScience #BusinessIntelligence #BigData #DataVisualization
28
19
66
8,752
๐— ๐—ฎ๐˜€๐˜๐—ฒ๐—ฟ ๐—ฆ๐—ค๐—Ÿ ๐—ณ๐—ผ๐—ฟ ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ ๐—ถ๐—ป 4 ๐—ฆ๐—ถ๐—บ๐—ฝ๐—น๐—ฒ ๐—ฆ๐˜๐—ฒ๐—ฝ๐˜€! SQL is a must-have skill for any data scientist, analyst, or engineer. If youโ€™re struggling to master it, donโ€™t worryโ€”Iโ€™ve broken it down into 4 easy steps to help you go from beginner to pro. ๐ŸŽฏ Ready to start? ๐Ÿ”—lnkd.in/dkexGamM ๐Ÿ”” Donโ€™t forget toย ๐—ฆ๐—›๐—”๐—ฅ๐—˜ ๐˜๐—ต๐—ถ๐˜€ ๐˜„๐—ถ๐˜๐—ต ๐˜€๐—ผ๐—บ๐—ฒ๐—ผ๐—ป๐—ฒ ๐˜„๐—ต๐—ผ ๐—บ๐—ถ๐—ด๐—ต๐˜ ๐—ป๐—ฒ๐—ฒ๐—ฑ ๐˜๐—ต๐—ฒ ๐—ฟ๐—ฒ๐˜€๐—ผ๐˜‚๐—ฟ๐—ฐ๐—ฒ๐˜€. #SQLforDataScience #DataSkills #LearnSQL #DataAnalytics
2
45
๐Ÿš€ Ready to level up your SQL game? Dive into advanced SQL techniques tailored for data science and uncover ways to tackle complex data challenges! From powerful window functions to optimization strategies, this guide covers it all in a practical, hands-on approach. Whether youโ€™re a seasoned analyst or just starting, these techniques will transform how you approach data. Don't miss outโ€”get ready to elevate your skills and gain insights that will set you apart! #SQLforDataScience #AdvancedSQL linkedin.com/pulse/advanced-โ€ฆ
56
๐Ÿš€ Unlock the Power of SQL for Data Science! If youโ€™re looking to master joins, subqueries, and indexingโ€”the building blocks of efficient data handlingโ€”this is your guide! Learn how these skills can transform the way you work with data, boosting speed and clarity in your queries. Whether you're just starting or brushing up, this article breaks it down with hands-on examples and clear explanations. Ready to level up? Dive in now and see how these techniques can sharpen your data game! #DataScienceEssentials #SQLforDataScience linkedin.com/pulse/joins-subโ€ฆ
1
39
"Master SQL skills for data science! Learn how to manipulate, query, and manage databases efficiently to uncover valuable insights and boost your data-driven decision-making. #SQLForDataScience #DataScienceSkills #LearnSQL #SQLQueries #DataAnalytics #SQLTraining #hkrtrainings
18
I just completed the course "Data Manipulation in SQL"! datacamp.com/completed/stateโ€ฆ via @DataCamp #datafam #sql #sqlfordatascience

1
23
19 Jun 2023
#SQL #webinar #sqlforbeginners #sqlfordatascience For those who were unable to attend the session I made a series of videos for the young aspirants so they get quick grip on it. lnkd.in/ds4gnXqz

8
Real-world data analysis requires proficiency in databases and SQL. Check out these free resources: W3Schools (SQL) #SQLBasics Mode Analytics (SQL) #SQLForDataScience
16
Replying to @Parashu1423
This thread is saved to your Notion database. Tags: [Sqlfordatascience]
Python Basics Tutorial Our SQL Journey Pt 13 What How When and Why Do I ... youtu.be/nerr2YeXvPQ via @YouTube #Python #SQL #SQLFORDATASCIENCE

Day 16 #100daysofcode #30daysofdata #sqlfordatascience (@DataCamp - Learnt about "self-join"(joining a table to itself) basic calculations using "self-join" - Learnt the use of the "CASE" clause together with the use of the "WHEN", "THEN", "ELSE" AND "END" clauses.
1
1
4
#sqlfordatascience - Learnt the use of the "HAVING" keyword (this is closely related to the "WHERE" keyword. The distinction, however, is grounded in the fact that the "HAVING" keyword is used with "AGGREGATE FUNCTIONS"- "AVG", "SUM"...- whilst the "WHERE" keyword is not).
1
1
Day 15 #100daysofcode #30daysofdata #sqlfordatascience(@DataCamp) - Learnt the "sorting of single columns" - Learnt the "sorting of multiple columns" - Learnt the use of the "GROUP BY" clause - Introduction to the basics of the "JOIN" keyword to link multiple TABLES contd...
1
7
9