In SQL, the asterisk (*) wildcard character is used to select all columns from a table. The correct syntax is 'SELECT * FROM table_name' as shown in option A. Options B, C, and D use incorrect syntax - SQL doesn't use [all] keyword this way, requires a column list or *, and cannot have empty SELECT clause.