This file contains 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
CREATE TABLE STUDENT | |
( | |
id int PRIMARY KEY, | |
firstName nvarchar(200), | |
lastName nvarchar(200), | |
email nvarchar(320) | |
); | |
-- This is a dummy record do not use in production !! |