I have the following table:
| Column1 | Column2 |
|---|---|
| 99 | QA |
| 65 | CD |
| 134 | LL |
| N12 | OO |
| 127 | KK |
| Q23 | MM |
| 1 | AA |
| A10 | KL |
| K9 | MA |
I would like to sort the table such that the numbers are sorted in descending order first then the alphabets in descending order. How do I do that? The output should look something like the following:
| Column1 | Column2 |
|---|---|
| 134 | LL |
| 127 | KK |
| 99 | QA |
| 65 | CD |
| 1 | AA |
| Q23 | MM |
| N12 | OO |
| K9 | MA |
| A10 | KL |
134,...actual numbers or strings? - Quang Hoang