Skip to content

Instantly share code, notes, and snippets.

View max-programming's full-sized avatar
🌳
Building, teaching and learning

Usman Sabuwala max-programming

🌳
Building, teaching and learning
View GitHub Profile
@max-programming
max-programming / create_tables.sql
Last active October 6, 2024 09:00
SQL Queries
-- Branches table
CREATE TABLE tblBranch (
branchId VARCHAR(255) PRIMARY KEY,
branchName VARCHAR(255) NOT NULL,
building VARCHAR(255),
other VARCHAR(255)
);
-- Students Table
CREATE TABLE tblStudent (
studentId INT PRIMARY KEY,