The asterisk symbol (*)
The following query specifies all the columns in the manufact table
in a projection list. An explicit projection list is
a list of the column names or expressions that you want to project
from a table.
The following query uses the wildcard asterisk symbol
(*) as shorthand in the projection list to represent the names of
all the columns in the table. You can use the asterisk symbol (*)
when you want all the columns in their defined order. An implicit select
list uses the asterisk symbol.