Skip to content

Instantly share code, notes, and snippets.

View manasrpatra146's full-sized avatar

manasrpatra146

View GitHub Profile
@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,