Multiple choice technology mainframe With SQL, how do you select a column named "FirstName" from a table named "Persons"? SELECT FirstName FROM Persons SELECT Persons.FirstName EXTRACT FirstName FROM Persons EXTRACT Persons.FirstName Reveal answer Fill a bubble to check yourself A Correct answer Explanation The basic SELECT syntax is 'SELECT column_name FROM table_name'. This directly retrieves all values from the specified column.