Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8667663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:01:18+00:00 2026-06-12T18:01:18+00:00

I would like to order a set like this: a 2 a 1 b

  • 0

I would like to order a set like this:

  • a 2
  • a 1
  • b 9

not like the normal ascending order:

  • a 1
  • a 2
  • b 9

I other words, I have a single column with some text and sometimes a number i the end. I would like to have all the fields with a number in the end to be sorted descending on the numbers, but the leading text must still be sorted ascending.

The strings are not just 1 char long but of an unknown length and the numbers are also not only 1 char long, but also of an unknown length and not guaranteed to be in the end of the string it might look like: “Random event, 12th time”

If I have a string like “Random event, 12th time” I want it to appear before: “Random event, 11th time” in my result.

Hope there are some SQL guys who know the answer to this 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T18:01:19+00:00Added an answer on June 12, 2026 at 6:01 pm

    you could create a function that isolates the number you want to order by. eg. something like this (found here MySQL strip non-numeric characters to compare)

    DROP FUNCTION IF EXISTS STRIP_NON_DIGIT;
    DELIMITER $$
    CREATE FUNCTION STRIP_NON_DIGIT(input VARCHAR(255))
       RETURNS INT
       DETERMINISTIC
    BEGIN
       DECLARE output   VARCHAR(255) DEFAULT '';
       DECLARE iterator INT          DEFAULT 1;
       WHILE iterator < (LENGTH(input) + 1) DO
          IF SUBSTRING(input, iterator, 1) IN ( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' ) THEN
             SET output = CONCAT(output, SUBSTRING(input, iterator, 1));
          END IF;
          SET iterator = iterator + 1;
       END WHILE;
       RETURN output;
    END
    $$
    

    and now run your sql like this:

    SELECT * FROM myTable order by myString, STRIP_NON_DIGIT(myString) DESC;

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to order contents in a column when user clicks column header.
I have the following LINQ that I would like to also order by file
I have a QuerySet, and I would like to order them numerically. The issue
Hey i would like do have your input on this I use this to
In order to internationalize my app I would like to have named routes like
I have set of non-unique numbers and would like to partition those numbers into
I have a set of data and ask Matlab to sort in ascending order
I would like to order by date and then team in a MySQL query.
I would like to use ORDER BY FIELD() (MySQL) in Django. Does Django support
I would like to specify the order of initialization of portlets when the portal

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.