Question: ( 1 0 points ) Suppose we have a database with a table, StudentInfo, which contains the following records. table [ [ FirstName ,

(10 points) Suppose we have a database with a table, StudentInfo, which contains the following records.
\table[[FirstName,LastName,Credits,YearAdmitted],[Tim,Roberts,12,2017],[John,Cooper,13,2008],[Lamar,Williams,12,2009],[Tom,Parker,9,2014],[Mary,Smith,17,2007],[Lisa,Jones,5,2010],[Roger,Stanford,3,2013],[Michael,Jones,18,2008],[William,Smith,9,2006]]
a) List the fields for this table.
b) What is the output (ie: list the appropriate records) from:
SELECT LastName, YearAdmitted FROM StudentInfo WHERE YearAdmitted 2009 OR YearAdmitted 2014
c) What is the output (ie: list the appropriate records) from:
SELECT * FROM StudentInfo WHERE Credits>=12 AND YearAdmitted 2009;
 (10 points) Suppose we have a database with a table, StudentInfo,

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!