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
-- Creating a database | |
CREATE DATABASE StudentDB; | |
-- Using the database | |
USE StudentDB; | |
-- Creating a table | |
CREATE TABLE Students ( | |
StudentID INT PRIMARY KEY, | |
Name VARCHAR(50), |