Skip to content

Commit a20811b

Browse files
committed
added footer fix, and hero image, sql tutorials
1 parent b531a6e commit a20811b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1019
-22
lines changed

docs/sql/SQL-basics/filtering-data.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,13 @@ By following these best practices,
115115
:::
116116
117117
### 🔄 Checking Equality
118-
> We use the = operator to check if the two values are equal.
118+
119+
> We use the = operator to check if the two values are equal.
120+
119121
> The values like text values are writtern between single quotes.
122+
120123
> We can also use the numeric properties , it dont need to put in the quotes.
124+
121125
> the = sign check if the two values are equal.
122126
123127
:::info

docs/sql/SQL-basics/the-inequality-operator.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ WHERE year <> 1;
4949

5050

5151

52+
5253
### 📘 Practise Example
5354

54-
> To query data from a table, use the FROM clause followed by the table's name.
55+
> To query data from a table, use the FROM clause followed by the table's name.
5556
5657
5758
For example, consider a table named `Friends`. Below is how a simple table might look:
@@ -101,6 +102,7 @@ By following these best practices,
101102
:::
102103
103104
### 🔄 Comparison Operator.
105+
104106
> Sometimes, comparison with = and are not felxible enoguh like when filtering by price of a grocery itesm
105107
> We can use conditions to select items having a property les s than a threshold value like chocolate items with a price less than 2$
106108
> We can also use the numeric properties , it dont need to put in the quotes.
@@ -144,7 +146,7 @@ WHERE pollution_index < 100;
144146
## 🧹 Selecting Unique Values with numeric
145147
146148
We want to code a condition to select records from the pollution table where the pollution_index is less than or equal to 122.
147-
---
149+
148150
149151
:::info
150152
<Tabs>

docs/sql/intro-sql.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ Then company started developing database management system like SQL, Postgres,My
172172
</Tabs>
173173

174174

175+
175176
1. Advantages: **Platform Independent?**: Yes and No — It Depends. The core SQL language (based on ANSI/ISO standards) is platform-independent, meaning the basic syntax and concepts—like SELECT, INSERT, UPDATE, and DELETE—are the same across different database systems. ❌ But, SQL Implementations Are Not Fully Platform Independent:
176177

177178
Different Database Management Systems (DBMS)—like MySQL, PostgreSQL, Oracle, SQL Server, and SQLite—extend SQL differently. They may:

docs/sql/setup-environment.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,36 @@ description: In this tutorial, you will learn how to set up your development env
2020
There are different emulators available for SQL Queries, but as a beginner its always good to start with Installing MYSQL Server and Workbench in your system, it helps you to understand the overall process and industry settings. This MYSQL Workbench is called the IDE (Itegrated developement enviornment).
2121
We will guide you to setup the IDE in your system, and navigate further executing SQL queries and creating database in the IDE.
2222

23-
**1. Download the Installer:**: To install download the installer.
23+
### **1. Download the Installer:**: To install download the installer.
2424

25-
- Select the version compatible with your operating system (Windows, macOS, or Linux).
26-
- Click Download and follow the installation instructions.
27-
- https://dev.mysql.com/downloads/workbench/
25+
Click the link below to download MySQL Workbench:
2826

29-
**2. Mac:**
30-
- Server Install: http://bit.ly/2PU2IZU
27+
👉 [MySQL Workbench Official Download Page](https://dev.mysql.com/downloads/workbench/)
3128

32-
- Workbench Install: http://bit.ly/2B2xiZ2
29+
- ✅ Choose your OS (Windows, macOS, or Linux)
30+
- ✅ Follow the installation instructions
3331

34-
**3. Linux:**
35-
- Server Install: http://bit.ly/2DijNpJ
32+
<iframe width="853" height="480" src="https://www.youtube.com/embed/u96rVINbAUI" title="How To Install MySQL (Server and Workbench)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
33+
34+
---
3635

37-
- Workbench Install: http://bit.ly/2B153d8
36+
### 🍎 macOS Users
37+
- 💾 [Server Installer](http://bit.ly/2PU2IZU)
38+
- 💻 [Workbench Installer](http://bit.ly/2B2xiZ2)
39+
40+
---
41+
42+
### 🐧 Linux Users
43+
- 💾 [Server Installer](http://bit.ly/2DijNpJ)
44+
- 💻 [Workbench Installer](http://bit.ly/2B153d8)
45+
46+
---
3847

3948

4049
## Why Do You Need an IDE?
4150

4251
This IDE helps you to execute and maintain the workflow of SQL, It acts as a source code editor, and a debugger. It basically help you to execute and debug any bugs for developer. Especially when comes to DBA (Database adminstration), managing huge dataset can be tiring here, it will help you with performance dashboard and quick improvement features.
4352

44-
<iframe width="853" height="480" src="https://www.youtube.com/embed/u96rVINbAUI" title="How To Install MySQL (Server and Workbench)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
4553

4654
### Key Features to Look for in an IDE/Text Editor
4755

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "Table Transformation",
3+
"position": 4,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "In this section, you will learn the basics of HTML, including how to create a simple webpage and how to use HTML tags to structure your content."
7+
}
8+
}
135 KB
Loading
106 KB
Loading
86.6 KB
Loading
33.5 KB
Loading
33 KB
Loading

0 commit comments

Comments
 (0)