This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select first_name,email from employees; | |
CREATE DATABASE company; | |
USE company; | |
CREATE TABLE employees ( | |
id INT AUTO_INCREMENT PRIMARY KEY, | |
first_name VARCHAR(50), | |
last_name VARCHAR(50), | |
department VARCHAR(50), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE bookstore; | |
USE bookstore; | |
CREATE TABLE books ( | |
book_id INT PRIMARY KEY, | |
title VARCHAR(100), | |
author VARCHAR(50), | |
price DECIMAL(10,2), | |
publication_date DATE, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Logical operators are used in SQL to filter records based on multiple conditions in the WHERE clause | |
-- AND → Returns records where both conditions are TRUE | |
-- OR → Returns records where at least one condition is TRUE | |
-- NOT → Negates a condition (returns the opposite result) | |
CREATE DATABASE company_db; | |
USE company_db; | |
CREATE TABLE employees ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
SQL Sorting and ORDER BY Tutorial | |
================================ | |
This SQL script demonstrates various techniques for sorting data using ORDER BY | |
and includes examples ranging from basic to advanced sorting concepts. | |
*/ | |
-- Section 1: Database and Table Setup | |
-- ---------------------------------- | |
CREATE DATABASE db12; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ============================================= | |
-- MySQL LIMIT Clause Lecture | |
-- ============================================= | |
-- 1. Setup and Sample Data | |
CREATE DATABASE db13; | |
USE db13; | |
-- Create products table | |
CREATE TABLE products ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL Aliases Tutorial | |
-- Aliases are temporary names assigned to database tables, columns, or expressions | |
-- to make them more readable and manageable. | |
-- Create and use the database | |
CREATE DATABASE db16; | |
USE db16; | |
-- Create employees table | |
CREATE TABLE employees ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL DISTINCT Tutorial | |
-- The DISTINCT clause eliminates duplicate rows from the result set | |
-- Syntax: SELECT DISTINCT column1, column2 FROM table_name; | |
-- Create and use the database | |
CREATE DATABASE EmployeeDB; | |
USE EmployeeDB; | |
-- Create employees table | |
CREATE TABLE employees ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ============================================= | |
-- SQL FUNCTIONS DEMO SCRIPT | |
-- A comprehensive demonstration of various SQL functions | |
-- ============================================= | |
-- ================= | |
-- STRING FUNCTIONS | |
-- ================= | |
-- Create and use database for string function examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- GROUP BY Examples in SQL | |
-- ============================================= | |
-- This file demonstrates various examples of using GROUP BY in SQL queries | |
-- for data summarization and aggregation operations. | |
-- Database Setup | |
-- ============================================= | |
CREATE DATABASE db_for_group_by; | |
USE db_for_group_by; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- SQL INNER JOIN Lecture | |
-- An INNER JOIN returns only the rows where there is a match in both tables based on the specified join condition. | |
-- If there's no match, the rows from both tables are excluded from the result set. | |
-- Create database | |
CREATE DATABASE db_inner_join; | |
USE db_inner_join; | |
-- Create authors table | |
CREATE TABLE authors ( |
OlderNewer