SQL Fundamentals and SQL*Plus Commands
Casual Mode - Take your time!
1 / 19
Correct
0
Incorrect
0
Score
0%
Multiple Choice
With SQL, how do you select all the records from a table named "Persons" where the "FirstName" is "Peter" and the "LastName" is "Jackson"?
- SELECT * FROM Persons WHERE FirstName='Peter' AND LastName='Jackson' ;
- SELECT * FROM Persons WHERE FirstName LIKE 'Peter' AND LastName LIKE 'Jackson';
- SELECT FirstName='Peter', LastName='Jackson' FROM Persons
- SELECT FirstName LIKE 'Peter', LastName LIKE 'Jackson' FROM Persons