Created
August 8, 2017 04:58
-
-
Save mmikhan/940456465932131a7485d7738c18cb3d to your computer and use it in GitHub Desktop.
Database Management System Lab Final
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
CREATE DATABASE `dbms`; | |
USE `dbms`; | |
-- 1 | |
CREATE TABLE `college`( | |
`cname` varchar(50), | |
`state` varchar(10), | |
`enrollment` INT | |
); | |
-- 4 | |
CREATE TABLE `student`( | |
`sid` INT AUTO_INCREMENT, | |
`sname` varchar(20), | |
`gpa` INT CHECK(gpa>=0 AND gpa<=4), | |
PRIMARY KEY(`sid`) | |
); | |
-- 7 | |
CREATE TABLE `apply`( | |
`sid` INT AUTO_INCREMENT, | |
`cname` varchar(50), | |
`major` varchar(10) UNIQUE, | |
`decision` varchar(10), | |
FOREIGN KEY(`sid`) REFERENCES `student`(`sid`) | |
); | |
-- 2 | |
DESCRIBE `college`; | |
DESCRIBE `student`; | |
DESCRIBE `apply`; | |
-- 3 | |
INSERT INTO `college` VALUES( | |
'UITS', 'Baridhara', 100 | |
); | |
INSERT INTO `college` VALUES( | |
'Cambrian', 'Baridhara', 500 | |
); | |
INSERT INTO `college` VALUES( | |
'Boston', 'Tangail', 1000 | |
); | |
INSERT INTO `student` VALUES( | |
NULL, 'Ohaidur', 2 | |
); | |
INSERT INTO `student` VALUES( | |
NULL, 'Rafi', 3 | |
); | |
INSERT INTO `student` VALUES( | |
NULL, 'Nafi', 4 | |
); | |
INSERT INTO `apply` VALUES( | |
NULL, 'MIT', 'CSE', 'Yes' | |
); | |
INSERT INTO `apply` VALUES( | |
NULL, 'Cambrian', 'Science', 'No' | |
); | |
INSERT INTO `apply` VALUES( | |
NULL, 'Sristy', 'Commerce', 'Yes' | |
); | |
-- 5 | |
SELECT * FROM `student` ORDER BY `gpa`; | |
-- 6 | |
SELECT student.sname, apply.major FROM `student` INNER JOIN `apply` ON student.sid = apply.sid; | |
-- 8 | |
SELECT student.sname, student.gpa FROM `student` INNER JOIN `apply` ON student.sid = apply.sid WHERE apply.major = 'CSE' AND apply.cname = 'MIT'; | |
-- 9 | |
SELECT * FROM `college`; | |
SELECT * FROM `student`; | |
SELECT * FROM `apply`; | |
-- 10 | |
UPDATE `college` SET `cname` = 'Pentagon' WHERE `cname` = 'Boston'; | |
SELECT * FROM `college`; | |
DROP DATABASE `dbms`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment