> SELECT cust_id AS Customer_ID, > > ORDER BY 3 ; You¹re sorting on a constant (literal value 3). The results are what you get when you run a non-stable sort on a constant.
Cheers, Gopal
> SELECT cust_id AS Customer_ID, > > ORDER BY 3 ; You¹re sorting on a constant (literal value 3). The results are what you get when you run a non-stable sort on a constant.
Cheers, Gopal