📚 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"?

  1. SELECT * FROM Persons WHERE FirstName LIKE 'Peter' AND LastName LIKE 'Jackson'
  2. SELECT * FROM Persons WHERE FirstName='Peter' AND LastName='Jackson'
  3. SELECT FirstName='Peter', LastName='Jackson' FROM Persons