You have a MySQL instance with the following variables in the /etc/my.cnf file:

You issue these statements:
USE prices;
UPDATE sales.january SET amount=amount+1000;
An hour after excluding the statements, you realize that you made a mistake and you want to go to the binary log and look at the statements again.
Which statement is true? (Choose two.)
Select all that apply, then click Submit answer.
-
○
You would receive an error on the statement because you cannot update a different database that what is specified with the USE statement.
-
○
The changes caused by the UPDATE statement are logged to the binary log because the instance is using --binlog-format = ROW
-
○
The statement would fail because you cannot update more than one row at a time when using --binlog-format = ROW.
-
○
Nothing is logged because you are executing an UPDATE statement that will cause changes to more than one row, and you do not have the --binlog-format value set to STATEMENT.
-
○
Nothing was written to the binary log because you cannot perform a calculation in a query without enclosing the statement in single quotation marks.