To select a specific column from a table, use SELECT column_name FROM table_name. This retrieves only the specified column for all rows. Option A uses incorrect dot notation (Persons.FirstName), C uses non-existent EXTRACT keyword, and the syntax for column selection is simply SELECT followed by the column name.