Which of the following SQL statements will return only the student name and GPA from the Student table for all students having a GPA that is greater than or equal to 3.5?
a. SELECT Name, GPA FROM Student WHERE GPA >=3.5
b. SELECT * FROM Student WHERE GPA >= 3.5
c. SELECT Name, Number, GPA, CumHrs FROM Student WHERE GPA >= 3.5
d. SELECT Student WHERE GPA >= 3.5 And Name, GPA
a. SELECT Name, GPA FROM Student WHERE GPA >=3.5
Computer Science & Information Technology
You might also like to view...
________ are what Web programmers add to an HTML/XHTML element to cause the browser to modify the default behavior of the element
Fill in the blank(s) with correct word
Computer Science & Information Technology
What test is when two or more modules or platforms are linked together and tested?
A. System B. Integration C. Unit D. Load
Computer Science & Information Technology