Multiple choice technology databases With SQL, how do you select a column named "FirstName" from a table named "Persons"? SELECT Persons.FirstName ; EXTRACT FirstName FROM Persons ; SELECT FirstName FROM Persons; EXTRACT Persons.FirstName Reveal answer Fill a bubble to check yourself C Correct answer Explanation SELECT column FROM table is the correct syntax. EXTRACT is used for date/time parts, not general column selection.