SELECT product_id, product_name, unit_price, commission FROM products WHERE (unit_price + commission) * tax_rate > 50 ORDER BY LIKE product_name; Given: All table and column references exist in the database. Indicate statement which is true regarding the result?
a. The statement will fail to execute because the ORDER BY clause includes the word "LIKE".
b. The statement will execute but not sort because the ORDER BY clause is wrong.
c. The statement will fail because the WHERE clause has a syntax error.
d. The statement will execute successfully as intended.