📚 Practice Mode
Basic SQL Quiz - 2
Learn at your own pace with hints and detailed explanations
1 / 20
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 LIKE 'Peter' AND LastName LIKE 'Jackson'
- SELECT * FROM Persons WHERE FirstName='Peter' AND LastName='Jackson'
- SELECT FirstName='Peter', LastName='Jackson' FROM Persons