Hello there!
Question: is there a transact statement for retrieving the data set in opposite order? I mean, we have for example:
select number, name from tabla1
------------------------------
Number Name
1 name1
2 name2
could we have something as?
------------------------------
Number 1 2
Name name1 name2
Probably this sounds nuts but I'm just wondering if it's possible...
Thanks!