To select all columns from a table, you use SELECT * followed by FROM and the table name. The asterisk () is a wildcard that represents all columns in the table. Option A only selects the table name (not columns), B has incorrect syntax (.Persons), and D uses non-existent [all] syntax.