Multiple Choice
Assume the following table named Student exists in a database:
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
Correct Answer:

Verified
Correct Answer:
Verified
Q20: What is the simplest way to update
Q21: A _statement in SQL retrieves data from
Q22: The correct SQL syntax to sort a
Q23: Which of the following SQL WHERE clauses
Q24: Each database _is also known as a
Q26: _is a tool provided by Visual Studio
Q27: All of the following are true about
Q28: You use to provide multiple selection conditions
Q29: A is a column (or columns) that
Q30: In an SQL query, the _wildcard character,