I am working on MS ACCESS database and I have to combine multiple entries in the table into one as for example,
min 1 2 3 8 9 11
max 2 3 5 9 10 12
and the result should be
min 1 8 11
max 5 10 12
How do I achieve this using SQL query in MS ACCESS? Please help.