Folder Structure sql/ ├── create_tables.sql # All CREATE TABLE statements ├── foreign_keys.sql # ALTER TABLE to add constraints ├── insert_data.sql # Sample INSERT INTO data ├── views.sql # CREATE ...
This is a hands-on SQL project demonstrating basic to intermediate SQL operations using an e-commerce database. All queries were executed in MySQL Workbench (Local Instance 2). create_tables.sql: ...