The values in a column has both negative and positive integers. I want to sort the column by its absolute value. How do I do this preferably in Access or in SQL? Thanks.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In MSSQL:
Use the
ABS()function on the column you want to sort. ie:SELECT a, ABS(b)FROM tbl
ORDER BY ABS(b)