View the Exhibit and examine the data in the PROMO_CATEGORY and PROMO_COST columns of the PROMOTIONS table.
Evaluate the following two queries:
SQL>SELECT DISTINCT promo_category to_char(promo_cost)"code"
FROM promotions -
ORDER BY code;
SQL>SELECT DISTINCT promo_category promo_cost "code"
FROM promotions -
ORDER BY 1;
Which statement is true regarding the execution of the above queries?
winston
1 year, 11 months agoSugar
5 years, 10 months agoduongvietnam
5 years, 9 months agonewtonlight
4 years, 6 months agoduongvietnam
5 years, 11 months ago