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

  • Home
  • SEARCH
  • 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 479479
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T00:47:48+00:00 2026-05-13T00:47:48+00:00

Suppose that I have a database table that contains information on cities across the

  • 0

Suppose that I have a database table that contains information on cities across the United States. My display shows information first grouped by State, then County, and finally by City something like below:


  • Alabama
    • Autauga County
    • city 1
    • city 2
    • etc
    • Baldwin County
    • city 1
    • city 2
    • etc
    • County etc
  • Alaska
    • Alaska county 1
    • city 1
    • alaska county 2

The query would look something like:

select * from myInfo order by state, county, city

A new wrinkle is that all states that contain cities called ‘Lincoln’ should have their states and counties ordered first. States without cities named Lincoln are to be ordered after. The desired result is something like:

  • Nebraska
    • Lancaster County
    • Lincoln
    • some other Lancaster City
    • Some other Nebraska County
  • New Mexico
    • Lincoln County
    • Lincoln
    • some other city
    • some other county
  • A Non-Lincoln State

I could do this complex ordering in code but I’m wondering how difficult it is to implement in pure sql. How difficult is the resulting query?

  • 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-05-13T00:47:48+00:00Added an answer on May 13, 2026 at 12:47 am

    Assuming your database is not normalized, here’s how I’d proceed: select everything from the table, add a self-join to see if the (state, county) pair has a city named ‘Lincoln’ and sort those first.

       SELECT t1.*, (t2.state IS NOT NULL) AS has_lincoln
         FROM myInfo t1
    LEFT JOIN myInfo t2 ON (t2.state, t2.county, t2.city)
                         = (t1.state, t1.county, 'Lincoln')
     ORDER BY t1.state, has_lincoln DESC, t1.county, t1.city
    

    If for some reason your database has multiple cities named ‘Lincoln’ with the same (state, county) pair, add DISTINCT to the mix. Or better yet, make sure you don’t have duplicate rows in your database by adding a UNIQUE key on (state, county, city)

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

Sidebar

Ask A Question

Stats

  • Questions 268k
  • Answers 268k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer How about putting the control variables in a separate module… May 13, 2026 at 1:02 pm
  • Editorial Team
    Editorial Team added an answer An event driven system can be very flexible like you… May 13, 2026 at 1:02 pm
  • Editorial Team
    Editorial Team added an answer Yes, it is that simple. Your code is good. You… May 13, 2026 at 1:02 pm

Related Questions

I've got a problem that keeps coming up with normalized databases and was looking
Whereas there is a set of richly informative pages describing Visual Studio templates for
I have an application that needs to support a multilingual interface, five languages to
I have a Products table in a SQL Server database and I am having

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.