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 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

Related Questions

Suppose I have an array that mimics a database table. Each array element represents
Suppose that I have a database with student information: {'student_name' : 'Alen', 'subjects' :
Suppose I have this database table (some sample code below) that stores the relationship
I have a database table that essentially contains different types of things. I'll use
Suppose the following scenario: I have a master database that contains lots of data,
Suppose I have a method that must return an object (say from a database
Suppose I have a class Customer that is mapped to the database and everything
Suppose that we have following tables create table Employee( 2 EMPNO NUMBER(3), 3 ENAME
Suppose I have two queries on a database table. The queries are defined in
I have a user table in my database which contains two columns FirstName and

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.