Multiple choice A Select/Delete/Update statement that does not have a where clause will _____. affect no record affect all the records return an error affect only the first record Reveal answer Fill a bubble to check yourself B Correct answer Explanation The where clause is an optional statement in a Select/Delete/Update statement. If it is omitted then the command will affect all the records of the table. For example, the statement delete from employees will delete all the records in the table.