Skip to content

Instantly share code, notes, and snippets.

View thevipulvats's full-sized avatar
💭
I may be slow to respond.

Vipul thevipulvats

💭
I may be slow to respond.
View GitHub Profile
-- 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;
-- =============================================
-- SQL FUNCTIONS DEMO SCRIPT
-- A comprehensive demonstration of various SQL functions
-- =============================================
-- =================
-- STRING FUNCTIONS
-- =================
-- Create and use database for string function examples
-- 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 (
-- 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 (
-- =============================================
-- MySQL LIMIT Clause Lecture
-- =============================================
-- 1. Setup and Sample Data
CREATE DATABASE db13;
USE db13;
-- Create products table
CREATE TABLE products (
/*
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;
-- 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 (
@thevipulvats
thevipulvats / where.sql
Created January 28, 2025 16:13
Filtering results (WHERE)
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,
@thevipulvats
thevipulvats / select.sql
Created January 28, 2025 13:31
Retrieving data (SELECT)
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),