Skip to content
Open

. #3

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8917bd8
Update 6.SQL Basic Commands CRUD Create, Read, Update, and Delete
robinjose24 Dec 25, 2025
73f4164
Update and rename 7.types_of_create_table to 7.types_of_create_table.sql
robinjose24 Dec 25, 2025
f5eb435
Update 7.types_of_create_table.sql
robinjose24 Dec 26, 2025
52ca8f0
Rename 8.alter to 8.alter.sql
robinjose24 Dec 26, 2025
49f970a
Update and rename 9.where to 9.where.sql
robinjose24 Dec 26, 2025
57ef74d
Update and rename 10.Key_Constraint_types to 10.Key_Constraint_types.sql
robinjose24 Dec 26, 2025
d9dd09b
Update 9.where.sql
robinjose24 Dec 27, 2025
fe3cea4
Modify status message in SQL notes
robinjose24 Dec 27, 2025
0e0fd0f
Rename 6.SQL Basic Commands CRUD Create, Read, Update, and Delete to …
robinjose24 Dec 27, 2025
da8f100
Rename 13.superkey_candidate_key to 13.superkey_candidate_key.sql
robinjose24 Dec 28, 2025
1a08f97
Rename SQL file to include proper extension
robinjose24 Dec 28, 2025
31f2aab
Rename 14.1.case_when to 14.1.case_when_.sql
robinjose24 Dec 28, 2025
9915280
Rename 15.null handling to 15.null handling.sql
robinjose24 Dec 29, 2025
e524372
Rename 16.String Handling to 16.String Handling.sql
robinjose24 Dec 30, 2025
bb7c5dc
Rename 17.Subquery to 17.Subquery.sql
robinjose24 Dec 30, 2025
12bcc2a
Rename 18.views to 18.views.sql
robinjose24 Dec 30, 2025
39404f5
Rename 20.joins to 20.joins.sql
robinjose24 Dec 30, 2025
4dabc07
rename
robinjose24 Jan 4, 2026
da288ff
Rename 21.union_union_all to 21.union_union_all.sql
robinjose24 Jan 4, 2026
408f4c9
Rename 22.index_explain to 22.index_explain.sql
robinjose24 Jan 4, 2026
50e4aec
Rename 23.partition to 23.partition.sql
robinjose24 Jan 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 10.Key_Constraint_types → 10.Key_Constraint_types.sql
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ The email column can have one or more NULL values, but each non-NULL email must
---

3. NOT NULL Constraint Failure
============================

The NOT NULL constraint ensures that a column cannot contain NULL values. If you try to insert a NULL value into a NOT NULL column, the operation will fail.

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

✅ Done
My complete SQL Masterclass Notes in Tanglish is now live! Covers 30+ topics with syntax, examples, and step-by-step explanations.
Perfect for both beginners and professionals to master SQL easily. Check it out here 👉 https://topmate.io/dataengineering/1697791

Expand Down
4 changes: 2 additions & 2 deletions 7.types_of_create_table → 7.types_of_create_table.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
✅ Done
My complete SQL Masterclass Notes in Tanglish is now live! Covers 30+ topics with syntax, examples, and step-by-step explanations.
Perfect for both beginners and professionals to master SQL easily. Check it out here 👉 https://topmate.io/dataengineering/1697791

====================================================================================


-- 1) Basic create
CREATE TABLE employees (
employee_id INT PRIMARY KEY,
Expand All @@ -20,7 +20,7 @@ CREATE TABLE departments (
location VARCHAR(100) NOT NULL
);

-- 3) Create table as select
-- 3) Create table as select ---(CTAS)
CREATE TABLE high_paid_employees AS
SELECT
employee_id,
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions 9.where → 9.where.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
✅ Done
My complete SQL Masterclass Notes in Tanglish is now live! Covers 30+ topics with syntax, examples, and step-by-step explanations.
Perfect for both beginners and professionals to master SQL easily. Check it out here 👉 https://topmate.io/dataengineering/1697791

Expand Down