Answer:a.) Select *
The FROM clause is missing. The two mandatory components of a SELECT statement are the SELECT and FROM.
b.) Select * from checks
The semicolon, which identifies the end of a SQL statement, is missing.
c.) Select amount name payee FROM checks;
You need a comma between each column name: Select amount, name, payee FROM checks;