ms access - SQL query to print mirror labels -


i want print labels in words returned sql query such follow.

1 2 3 4 5 6 

when want print reverse of labels, have print them follow

3 2 1 6 5 4 

in real case, have 5 colums 2 rows, how can formulate query records ordered second one. normal ordering handled word, query

select * products order products.id

i'm using ms access =(

edit :

just make clear

i'd records ordered such

3 2 1 6 5 4 9 8 7 12 11 10 

edit2 :

my table looks this

id productname 1 product1 2 product2 3 product3 n product[n] 

i want ids returned mentioned above

select * products order products.id desc 

alternately if query @ moment giving this:

select col1, col2, col3 products order products.id; 

why not use

select col3, col2, col1 products order products.id; 

Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

c++ - Accessing inactive union member and undefined behavior? -

php - Get uncommon values from two or more arrays -