The correct SQL syntax for selecting a specific column is 'SELECT column_name FROM table_name' as shown in option B. Option A uses EXTRACT which is for date/time parts, option C uses table.column format without proper context, and option D uses the wildcard to select all columns instead of just FirstName.