@Codingdidi
9.47K subscribers
26 photos
7 videos
47 files
257 links
Free learning Resources For Data Analysts, Data science, ML, AI, GEN AI and Job updates, career growth, Tech updates
Download Telegram
7 Best GitHub Repositories to Break into Data Analytics and Data Science

If you're diving into data science or data analytics, these repositories will give you the edge you need. Check them out:

1️⃣ 100-Days-Of-ML-Code
πŸ”— https://github.com/Avik-Jain/100-Days-Of-ML-Code
⭐️ Stars: ~42k

2️⃣ awesome-datascience
πŸ”— https://github.com/academic/awesome-datascience
⭐️ Stars: ~22.7k

3️⃣ Data-Science-For-Beginners
πŸ”— https://github.com/microsoft/Data-Science-For-Beginners
⭐️ Stars: ~14.5k

4️⃣ data-science-interviews
πŸ”— https://github.com/alexeygrigorev/data-science-interviews
⭐️ Stars: ~5.8k

5️⃣ Coding and ML System Design
πŸ”— https://github.com/weeeBox/coding-and-ml-system-design
⭐️ Stars: ~3.5k

6️⃣ Machine Learning Interviews from MAANG
πŸ”— https://github.com/arunkumarpillai/Machine-Learning-Interviews
⭐️ Stars: ~8.1k

7️⃣ data-science-ipython-notebooks
πŸ”— https://github.com/donnemartin/data-science-ipython-notebooks
⭐️ Stars: ~27.2k

Explore these amazing resources and take your data science journey to the next level! πŸš€
#DataScience #DataAnalytics #GitHub #MachineLearning #CodingSkills
πŸ‘3❀2
Provides a default value for a column when no value is specified.
βœ”οΈ Helps in avoiding NULL values in columns where default values make sense.

βœ… Example of DEFAULT Constraint
CREATE TABLE Orders (
OrderID INT PRIMARY KEY,
CustomerName VARCHAR(50),
OrderDate DATE DEFAULT CURRENT_DATE
);

βœ”οΈ If OrderDate is not provided, it automatically gets the current date.

βœ… Inserting Data (Valid Cases)
INSERT INTO Orders (OrderID, CustomerName) VALUES (1, 'Alice'); -- βœ… OrderDate is set to today's date
INSERT INTO Orders (OrderID, CustomerName, OrderDate) VALUES (2, 'Bob', '2025-01-01'); -- βœ… Valid, custom date given


---

πŸ”Ή Summary of SQL Constraints

| Constraint | Ensures | Can Be NULL? | Allows Multiple in a Table? |
|--------------|---------------------------------|--------------|--------------------------|
| PRIMARY KEY | Uniqueness & Non-null values | ❌ No | ❌ No (Only One) |
| FOREIGN KEY | Referential Integrity | βœ… Yes (If NULL allowed) | βœ… Yes |
| UNIQUE | Uniqueness (without Primary Key) | βœ… Yes | βœ… Yes |
| CHECK | Enforces condition on values | βœ… Yes | βœ… Yes |
| DEFAULT | Provides a default value | βœ… Yes | βœ… Yes |

---

πŸ”Ή Your Task for Today
βœ… Create a Students & Courses database using all the constraints.
βœ… Try inserting valid & invalid values to see how constraints work.
βœ… Comment below if you have any questions! πŸ’¬

---

πŸ”Ή What’s Next?
Tomorrow, we will learn Creating and Managing Indexes! Stay tuned! πŸš€

πŸ’‘ Like ❀️ & Share if you're enjoying this SQL series! 😊

#DataScience #DataScience #DataAnalytics
πŸ‘1