- Create Database: Employee Report
- Data Cleaning: Change, Update, Modify...
- Data Visualization
-
- What is the total number of employees, and how many are there in each job title?
-
- What is the average salary by Job title?
-
- What is the distribution of experience levels within the company?
-
- What are the common work settings and their salaries?
-
- How does employee distribution vary by location?
- What is SQL?
- Why Learn SQL?
- What is a Database?
- Types of Databases
- How to Install a Database
- Create Database
- Delete Database
- Backup Database
- Use Database
- Create Table
- Insert Data into Table
- Delete Table
- Alter Table
- Update Table
- NOT NULL
- UNIQUE
- PRIMARY KEY
- FOREIGN KEY
- CHECK
- DEFAULT
- CREATE INDEX
- Auto Increment
- Views
- Database Hosting
- Numeric
- Strings
- Datetime
- Boolean
- JSON
- Comments in SQL
- Select Statements
- SELECT
- SELECT DISTINCT
- SELECT TOP
- Arithmetic Operators
- Comparison Operators
- Logical Operators
- MySQL Functions
- String Functions
- Numeric Functions
- Date Functions
- WHERE Clause
- Group By
- Order By
- HAVING Clause
- LIMIT Clause
- Inner Join
- Left Join
- Right Join
- Full Join
- Unions
- CASE Statement
- Subqueries
- Window Functions
- Common Table Expressions (CTE)
- Temporary Tables
- Stored Procedures
- Triggers and Events
- What is SQL?: Overview of SQL and its purpose in database management.
- Why Learn SQL?: Benefits and applications of learning SQL.
- What is a Database?: Definition and key components of databases.
- Types of Databases: Different types of databases (Relational, NoSQL, etc.).
- How to Install a Database: Steps to install popular databases like MySQL, PostgreSQL, and MongoDB.
- Create Database: SQL command to create a new database.
- Delete Database: SQL command to delete an existing database.
- Backup Database: Methods to back up a database.
- Use Database: Switching and using different databases.
- Create Table: SQL command to create a new table.
- Insert Data into Table: SQL command to insert data into a table.
- Delete Table: SQL command to delete a table.
- Alter Table: SQL command to modify the structure of an existing table.
- Update Table: SQL command to update existing data in a table.
- NOT NULL: Ensures that a column cannot have a NULL value.
- UNIQUE: Ensures all values in a column are unique.
- PRIMARY KEY: Uniquely identifies each record in a table.
- FOREIGN KEY: Ensures referential integrity between two tables.
- CHECK: Ensures that all values in a column satisfy a specific condition.
- DEFAULT: Sets a default value for a column.
- CREATE INDEX: Creates an index on a table for faster retrieval.
- Auto Increment: Automatically generates a unique number for a column.
- Views: Virtual tables created from a SQL query.
- Database Hosting: Hosting options for databases (local vs. cloud).
- Numeric Data Types: INT, FLOAT, DOUBLE, DECIMAL.
- String Data Types: VARCHAR, CHAR, TEXT.
- Datetime Data Types: DATE, DATETIME, TIMESTAMP.
- Boolean Data Types: BOOLEAN, BIT.
- JSON Data Types: Storing and querying JSON data.
- Comments in SQL: Adding comments to SQL code.
- Select Statements:
- SELECT: Retrieve data from a database.
- SELECT DISTINCT: Retrieve unique records.
- SELECT TOP: Retrieve the top N records.
- Arithmetic Operators: +, -, *, /, %.
- Comparison Operators: =, !=, <>, >, <, >=, <=.
- Logical Operators: AND, OR, NOT.
- MySQL Functions:
- String Functions: CONCAT, LENGTH, LOWER, UPPER, SUBSTRING.
- Numeric Functions: AVG, COUNT, MAX, MIN, SUM.
- Date Functions: NOW, CURDATE, DATEDIFF.
- WHERE Clause: Filter records based on conditions (AND, OR, NOT).
- Group By: Group records and calculate aggregates (AVG, MAX, MIN, COUNT).
- Order By: Sort records (ASC, DESC).
- HAVING Clause: Filter groups based on conditions (difference from WHERE).
- LIMIT Clause: Limit the number of records returned; aliasing columns.
- Inner Join: Combine records with matching values in both tables.
- Left Join: Include all records from the left table and matched records from the right.
- Right Join: Include all records from the right table and matched records from the left.
- Full Join: Include all records when there is a match in either table.
- Unions: Combine the result sets of multiple SELECT queries.
- CASE Statement: Perform conditional logic in queries.
- Subqueries: Nested queries for complex conditions.
- Window Functions: Perform calculations across a set of table rows.
- Common Table Expressions (CTE): Simplify complex queries.
- Temporary Tables: Store intermediate results in temporary tables.
- Stored Procedures: Reusable SQL code blocks for repeated tasks.
- Triggers and Events: Automate actions based on table changes or scheduled events.