The PRODUCTS table has these columns:<br /> PRODUCT_ID NUMBER(4)<br /> PRODUCT_NAME VARCHAR2(45)<br /> PRICE NUMBER(8,2)<br /> Evaluate this SQL statement:<br /> SELECT *<br /> FROM PRODUCTS<br /> ORDER BY price, product _ name;<br /> What is true about the SQL statement?()
A、The results are not sorted.
B、The results are sorted numerically.
C、The results are sorted alphabetically.
D、The results are sorted numerically and then alphabetically.