-
Notifications
You must be signed in to change notification settings - Fork 0
/
license
37 lines (29 loc) · 1.15 KB
/
license
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# SQL Mastery Guide
Welcome to the SQL Mastery Guide! This repository is a comprehensive resource for learning SQL, covering basic, intermediate, and advanced topics. Whether you're new to SQL or looking to enhance your skills, this guide provides everything you need to master SQL.
## Table of Contents
1. [Introduction](#introduction)
2. [Basic SQL](#basic-sql)
3. [Intermediate SQL](#intermediate-sql)
4. [Advanced SQL](#advanced-sql)
5. [Roadmap](#roadmap)
6. [How to Use This Repository](#how-to-use-this-repository)
7. [Project Files](#project-files)
8. [License](#license)
## Introduction
SQL (Structured Query Language) is a powerful tool for managing and manipulating databases. This guide will take you through the fundamentals of SQL, starting from the basics and progressing to advanced techniques used in real-world scenarios.
## Basic SQL
### Topics Covered:
- Creating Tables
- Viewing Tables
- Inserting Values
- Creating Databases
- Interacting with MySQL Server Management System
### Sample Code:
```sql
CREATE TABLE Students (
StudentID INT PRIMARY KEY,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Age INT,
Major VARCHAR(50)
);