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 8711323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T04:50:53+00:00 2026-06-13T04:50:53+00:00

This problem has been bugging me a lot since the past few days. Here’s

  • 0

This problem has been bugging me a lot since the past few days.
Here’s what I thought of:
A super big retail store company has stores in many different cities, each store
was opened on a given day.
The table tabulating the data would have (atleast) two columns,
(1) city name (2) date opened
Output desirable: multiple lists, each list
containing all the stores of a given city ordered
chronologically (by date opened) of 10 cities ordered
alphabetically.
To get around this I was thinking of:
Fetch #1: Alphabetically fetching 10 cities from the table
Fetch #2 (multiple fetches in a loop): Iterating each fetched city, and obtaining
all of its respective stores, making the order by date opened.

The above method which I’ve come up with does the job, however I was wondering if there
is a more concise way of doing it, which involves the looping though the stores of the cities while making fetch #1 itself, and thereby not increasing the time complexity by using an external loop and performing many sql executions instead of just one.
Would that be possible? one sql statement?

  • 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-13T04:50:55+00:00Added an answer on June 13, 2026 at 4:50 am
    SELECT * FROM my_table NATURAL JOIN (
      SELECT DISTINCT city FROM my_table ORDER BY city LIMIT 10
    ) t ORDER BY city, opened
    

    Split into separate lists when looping over the resultset within your application: just inspect city to see if it has changed since the last iteration. In pseudocode:

    for each record in resultset:
      if current city is not equal to last city then start new list
      output current record
      set last city to current city
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This has been bugging me for a few days now. I'm trying to migrate
This problem has been bugging me since forever. I have an array and in
This has been bugging me for a few days now and I have not
This problem has been bugging me for a long time. For example, the code
This Jquery problem has been bugging me for a while now. I developed a
This problem has been solved! Thanks a lot to Brad, Denis and junkie! You're
I am new to Visual Studio and this problem has been bugging me for
This has been bugging me for some time now. My problem is the following.
This problem has been bugging me for a while. I have to load a
Ok guys this problem has been bugging me all day and I cant seem

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.