# Ascending/ Descending ordering

## Overview

When sorting a database based on a column, we can order the records by ascending or descending order.

## Choosing type of Sort

By default it sorts by ascending, on click of the "ASC" key it orders it changes to descending "DESC"

<figure><img src="https://1803924624-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjtTl1rn3hJ3jyoJt6ty%2Fuploads%2FkZkCLpmv5dXsXvufHQ5k%2Fimage.png?alt=media&#x26;token=20b83afd-5ef1-4a93-a092-382019266e76" alt=""><figcaption></figcaption></figure>

Now we can see that the ordering is done by descending order

<figure><img src="https://1803924624-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjtTl1rn3hJ3jyoJt6ty%2Fuploads%2FupA2bBpmq2naI0rexFWt%2Fimage.png?alt=media&#x26;token=56898bea-1b4b-40a1-a1c1-13cea317427c" alt=""><figcaption></figcaption></figure>

## Testing&#x20;

We can see the ordering of results when sending a request through postman

Copy the endpoint from the top right box&#x20;

<figure><img src="https://1803924624-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjtTl1rn3hJ3jyoJt6ty%2Fuploads%2FMMX42fHmpx7iDiSyGKe6%2Fimage.png?alt=media&#x26;token=cc56daf2-8e1a-4651-af42-0229d695b044" alt=""><figcaption></figcaption></figure>

Paste the endpoint and hit send

<figure><img src="https://1803924624-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjtTl1rn3hJ3jyoJt6ty%2Fuploads%2FWZRJqkxfcVihboxAqjs4%2Fimage.png?alt=media&#x26;token=a3363509-86a9-4edc-a4d3-be598d221143" alt=""><figcaption></figcaption></figure>

Here we observe sorting in ascending order by customer\_id

<figure><img src="https://1803924624-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjtTl1rn3hJ3jyoJt6ty%2Fuploads%2FBdTJErG2rr08igrmGiic%2Fimage.png?alt=media&#x26;token=5b1998dd-be96-4439-8f6e-392f3c22d96c" alt=""><figcaption></figcaption></figure>

Here we observe sorting in descending order by customer\_id

<figure><img src="https://1803924624-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjtTl1rn3hJ3jyoJt6ty%2Fuploads%2Fy0IR3Grmi8MMDpvNY7ff%2Fimage.png?alt=media&#x26;token=0ee574d4-6ca8-49d0-b5cf-c58aa38b32b2" alt=""><figcaption></figcaption></figure>
