Advertisement
Guest User

insert

a guest
Jan 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.05 KB | None | 0 0
  1. INSERT INTO class VALUES ('cse','computer science and engineering');
  2. INSERT INTO class VALUES ('cste','computer science and telecommunication engineering');
  3. INSERT INTO class VALUES ('csit','computer science and information engineering');
  4. INSERT INTO class VALUES ('acce','applied chemistry and chemical engineering');
  5. INSERT INTO class VALUES ('fims','fisheries and marine science');
  6. INSERT INTO class VALUES ('pham','pharmacy');
  7. INSERT INTO class VALUES ('ice','information and communication engineering');
  8. INSERT INTO class VALUES ('am','applied mathematics');
  9. INSERT INTO class VALUES ('eshs','environmental science and haphazard studies');
  10. INSERT INTO class VALUES ('mbge','microbiology and genetics engineering');
  11.  
  12.  
  13. INSERT INTO student VALUES(1,'jannat','cse');
  14. INSERT INTO student VALUES(2,'mawa','cste');
  15. INSERT INTO student VALUES(3,'koli','csit');
  16. INSERT INTO student VALUES(4,'ferdous','mbge');
  17. INSERT INTO student VALUES(5,'keya','am');
  18. INSERT INTO student VALUES(6,'jahid','fims');
  19. INSERT INTO student VALUES(7,'sagar','pham');
  20. INSERT INTO student VALUES(8,'naeem','ice');
  21. INSERT INTO student VALUES(9,'kona','eshs');
  22. INSERT INTO student VALUES(10,'kamrul','acce');
  23.  
  24.  
  25. INSERT INTO lab VALUES(23,6,'physics');
  26. INSERT INTO lab VALUES(24,7,'chemistry');
  27. INSERT INTO lab VALUES(25,8,'biology');
  28. INSERT INTO lab VALUES(26,13,'cse');
  29. INSERT INTO lab VALUES(27,14,'eee');
  30. INSERT INTO lab VALUES(28,15,'botany');
  31. INSERT INTO lab VALUES(29,56,'mathematics');
  32. INSERT INTO lab VALUES(30,57,'java lab');
  33. INSERT INTO lab VALUES(31,58,'aeronatics');
  34. INSERT INTO lab VALUES(32,59,'agriculture');
  35.  
  36.  
  37. INSERT INTO allotment VALUES(2,23,'saturday');
  38. INSERT INTO allotment VALUES(3,24,'sunday');
  39. INSERT INTO allotment VALUES(4,23,'monday');
  40. INSERT INTO allotment VALUES(10,32,'monday');
  41. INSERT INTO allotment VALUES(7,27,'tuesday');
  42. INSERT INTO allotment VALUES(8,28,'wednesday');
  43. INSERT INTO allotment VALUES(5,29,'thrusday');
  44. INSERT INTO allotment VALUES(6,30,'saturday');
  45. INSERT INTO allotment VALUES(1,25,'sunday');
  46. INSERT INTO allotment VALUES(9,26,'tuesday');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement