You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sql/intro-sql.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,7 @@ Then company started developing database management system like SQL, Postgres,My
172
172
</Tabs>
173
173
174
174
175
+
175
176
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:
176
177
177
178
Different Database Management Systems (DBMS)—like MySQL, PostgreSQL, Oracle, SQL Server, and SQLite—extend SQL differently. They may:
Copy file name to clipboardExpand all lines: docs/sql/setup-environment.md
+19-11Lines changed: 19 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,28 +20,36 @@ description: In this tutorial, you will learn how to set up your development env
20
20
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).
21
21
We will guide you to setup the IDE in your system, and navigate further executing SQL queries and creating database in the IDE.
22
22
23
-
**1. Download the Installer:**: To install download the installer.
23
+
### **1. Download the Installer:**: To install download the installer.
24
24
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:
28
26
29
-
**2. Mac:**
30
-
- Server Install: http://bit.ly/2PU2IZU
27
+
👉 [MySQL Workbench Official Download Page](https://dev.mysql.com/downloads/workbench/)
31
28
32
-
- Workbench Install: http://bit.ly/2B2xiZ2
29
+
- ✅ Choose your OS (Windows, macOS, or Linux)
30
+
- ✅ Follow the installation instructions
33
31
34
-
**3. Linux:**
35
-
- Server Install: http://bit.ly/2DijNpJ
32
+
<iframewidth="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
+
---
36
35
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
+
---
38
47
39
48
40
49
## Why Do You Need an IDE?
41
50
42
51
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.
43
52
44
-
<iframewidth="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>
45
53
46
54
### Key Features to Look for in an IDE/Text Editor
"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."
0 commit comments