A. DELETE FROM Persons WHERE FirstName = 'Peter'
B. DELETE ROW FirstName='Peter' FROM Persons
C. DELETE FirstName='Peter' FROM Persons
How can you change "Hansen" into "Nilsen" in the "LastName" column in the Persons table?
With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with an "a"?
With SQL, how can you insert "Olsen" as the "LastName" in the "Persons" table?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
With SQL, how do you select a column named "FirstName" from a table named "Persons"?