You are on page 1of 1

Name: Shylle John Reyvet S Mortera Section: BSIT 202A

USE myDB;

CREATE TABLE tblStudentInfo (StudID int NOT NULL PRIMARY KEY, Stud_FN varchar(50),
Stud_LN varchar(50), Stud_Course varchar(50) NOT NULL);

INSERT INTO tblStudentInfo (StudID, Stud_FN, Stud_LN, Stud_Course) Values


(02000163534,'Shylle John Reyvet',' Mortera','unenrolled');

UPDATE tblStudentInfo SET Stud_Course = 'BSIT' where StudID = 02000163534;

You might also like