This file contains hidden or 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
| -- 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, |
OlderNewer