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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:32:57+00:00 2026-06-17T11:32:57+00:00

I am retrieving data and inserting it into another file. But the inserted data

  • 0

I am retrieving data and inserting it into another file. But the inserted data is not ordered. Following is the example of what I am trying to achieve.

let $n := <N>
<n>Lemon</n>
<n>Chickoo</n>
<n>Banana</n>
<n>Orange</n>
<n>Pineapple</n>
<n>Apple</n>
<n>Lemon</n>
<n>Chickoo</n>
<n>Banana</n>
</N>

for $x in distinct-values($n/n)
order by $x 
return 
    insert node  <n>{$x}</n> into doc('fruits')/fruit

The output of the fruits is as follows –

    <fruit>
            <n>Lemon</n>
            <n>Chickoo</n>
            <n>Banana</n>
            <n>Orange</n>
            <n>Pineapple</n>
            <n>Apple</n>
    </fruit>

Its not ordered, though mentioned while retrieving… !!!

  • 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-17T11:32:58+00:00Added an answer on June 17, 2026 at 11:32 am

    This is a bug in how BaseX evaluates the order by FLWOR clause, which is now documented on the GitHub bug tracker. The return clause is evaluated before sorting instead of afterwords, thus adding the updates in the wrong order.

    A workaround would be to either do the sorting in another FLWOR expression:

    for $x in
      for $d in distinct-values($n/n)
      order by $d
      return $d
    order by $x 
    return 
        insert node <n>{$x}</n> into doc('fruits')/fruit
    

    Another (probably more elegant) solution is to use insert nodes, which only has to be evaluated once:

    insert nodes
      for $x in distinct-values($n/n)
      order by $x 
      return <n>{$x}</n>
    into doc('fruits')/fruit
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am inserting data into two tables, however I can not figure out (after
I have developed a VB.Net code for retrieving data from excel file .I load
I am using durpal 6. while retrieving data i got the following output: |
i am using a background service that it is retrieving data and inserting data
I am retrieving data from a database and trying to populate a List<>. That
I have following numbers which has to be inserted into sqlite db and comma
I'm writing a localStorage wrapper to make inserting and retrieving data easier when needing
I'm retrieving data from another database that has already created unique IDs for each
I'm retrieving data from Active Directory(name,department,title,company,mail) into a string seperated by commas and I
I am trying to retrieving data from youtube. it is retuning the data in

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.