Tagged Questions
An ORDER BY clause in SQL specifies that a SQL SELECT statement returns a result set with the rows being sorted by the values of one or more columns.
149
votes
3answers
40k views
Multiple “order by” in LINQ
I have two tables, movies and categories, and I get an ordered list by categoryID first and then by Name.
The movie table has three columns, ID, Name, and CategoryID.
The category table two has ...
19
votes
12answers
34k views
SQL Query - Using Order By in UNION
How can one programmatically sort a union query when pulling data from two tables? For example,
SELECT table1.field1 FROM table1 ORDER BY table1.field1
UNION
SELECT table2.field1 FROM table2 ORDER BY ...
15
votes
10answers
403 views
How to avoid OrderBy - memory usage problems
Let's assume we have a large list of points List<Point> pointList (already stored in memory) where each Point contains X, Y, and Z coordinate.
Now, I would like to select for example N% of ...
14
votes
3answers
7k views
C# list.Orderby descending
Hey, I want to make this return the result, but in descending order. Is that possible?
var newList = list.OrderBy(x => x.Product.Name).toList();
I thought I could just add descending, like I do ...
14
votes
10answers
2k views
Orderby() not ordering numbers correctly c#
I am writing an app for my company and am currently working on the search functionality. When a user searches for an item, I want to display the highest version (which is stored in a database).
The ...
13
votes
7answers
5k views
Ordering by the order of values in a SQL IN() clause
I am wondering if there is away (possibly a better way) to order by the order of the values in an IN() clause.
The problem is that I have 2 queries, one that gets all of the IDs and the second that ...
11
votes
3answers
280 views
“ORDER BY … USING” clause in PostgreSQL
The ORDER BY clause is decribed in the PostgreSQLdocumentation as:
ORDER BY expression [ ASC | DESC | USING operator ] [ NULLS { FIRST | LAST } ] [, ...]
Can someone give me some examples how to ...
11
votes
5answers
3k views
MySQL - ORDER BY values within IN()
Hey -- I'm hoping to sort the items returned in the following query by the order they're entered into the IN() function.
INPUT:
SELECT id, name FROM mytable WHERE name IN ('B', 'A', 'D', 'E', 'C');
...
11
votes
3answers
8k views
How do I order a Group result, in Linq?
I have the following linq query, which works fine. I'm not sure how i order the group'd result.
from a in Audits
join u in Users on a.UserId equals u.UserId
group a by a.UserId into g
select new { ...
11
votes
7answers
5k views
MySQL - Control which row is returned by a group by
I have a database table like this:
id version_id field1 field2
1 1 texta text1
1 2 textb text2
2 1 textc text3
2 2 ...
11
votes
6answers
7k views
SQL Server UNION - What is the default ORDER BY Behaviour
If I have a few UNION Statements as a contrived example:
SELECT * FROM xxx WHERE z = 1
UNION
SELECT * FROM xxx WHERE z = 2
UNION
SELECT * FROM xxx WHERE z = 3
What is the default order by ...
10
votes
4answers
4k views
MySQL Group By ordering
I have the following table:
id time text otheridentifier
-------------------------------------------
1 6 apple 4
2 7 orange 4
...
9
votes
4answers
2k views
OrderBy and Top in LINQ with good performance
What is a good way to get the top 10 records from a very large collection and use a custom OrderBy? If I use the LINQ to Objects OrderBy method it is slow and takes a lot of memory because it creates ...
9
votes
5answers
17k views
How to update and order by using ms sql
Ideally I want to do this:
UPDATE TOP (10) messages SET status=10 WHERE status=0 ORDER BY priority DESC;
In English: I want to get the top 10 available (status=0) messages from the DB and lock them ...
8
votes
4answers
507 views
Entity Framework Include OrderBy random generates duplicate data
When I retrieve a list of items from a database including some children (via .Include), and order the randomly, EF gives me an unexpected result.. I creates/clones addition items..
To explain myself ...
8
votes
3answers
57 views
Explicitly specify sort order for mysql query?
If I have:
ID | Title
1 | Shirt
2 | CD
3 | Cap
4 | Mp3
5 | Badge
If I want to sort by this order: 4, 2, 5, 3,1. Is there a way to do an sql query where you explicitly specify this? Something ...
8
votes
1answer
70 views
Does ascending keyword exist purely for clarity when used with orderby?
If i do a query, ordering elements as below, i get ascending order.
var i = from a in new int[] { 1, 2, 3, 4, 5 }
orderby a
select a;
If i add the ascending keyword i get the same ...
8
votes
4answers
2k views
MySQL Order before Group by
I need to find the latest post for each author and then group the results so I only a single latest post for each author.
SELECT wp_posts.* FROM wp_posts
WHERE wp_posts.post_status='publish'
...
8
votes
2answers
213 views
Using MySql, can I sort a column but have 0 come last?
I want to sort by an column of ints ascending, but I want 0 to come last. Is there anyway to do this in MySql?
8
votes
3answers
2k views
Custom sort logic in OrderBy using LINQ
What would be the right way to sort a list of strings where I want items starting with an underscore '_', to be at the bottom of the list, otherwise everything is alphabetical.
Right now I'm doing ...
8
votes
2answers
244 views
With a SELECT…WHERE id IN (…), order results by IN()? [closed]
Possible Duplicate:
Ordering by the order of values in a SQL IN() clause
With a query such as:
SELECT * FROM images WHERE id IN (12,9,15,3,1)
is it possible to order the results by the ...
8
votes
3answers
158 views
order by a parameter
Hi i have a store procedure, where i do a select query.
I want order this by an external parameter.
I post an minimal example:
CREATE PROCEDURE [dbo].[up_missioni_get_data]
@order VarChar(100)
AS
...
8
votes
5answers
2k views
MySQL ORDER BY IN()
I have a PHP array with numbers of ID's in it. These numbers are already ordered.
Now i would like to get my result via the IN() method, to get all of the ID's.
However, these ID's should be ordered ...
7
votes
3answers
102 views
Determine whether an IQueryable<T> is ordered or not
Is there a way to know if an IQueryable<T> has been ordered (using OrderBy or OrderbyDescending)?
So I know whether to call OrderBy or ThenBy on the collection.
IQueryable<Contact> ...
7
votes
1answer
120 views
Order by does not work with Concat() in LINQ
Using VB.net and the following LINQ statement. I suspect the "Order by" does not work with Concat(). I want to list the current item the user has and then list more available items in asending order. ...
7
votes
3answers
1k views
Why does MYSQL higher LIMIT offset slow the query down?
Scenario in short: A table with more than 16 million records [2GB in size]. The higher LIMIT offset with SELECT, the slower the query becomes, when using ORDER BY *primary_key*
So
SELECT * ...
7
votes
3answers
115 views
How to find the first item according to a specific ordering using LINQ in O(n)?
Suppose I have a list of items (e.g., Posts) and I want to find the first item according to some non-trivial ordering (e.g., PublishDate and then CommentsCount as a tie-breaker).
The natural way to do ...
7
votes
4answers
3k views
C# Sort and OrderBy comparison
I can sort a list using Sort or OrderBy. Which one is faster? Are both working on same
algorithm?
List<Person> persons = new List<Person>();
persons.Add(new Person("P005", "Janson"));
...
7
votes
4answers
4k views
How to change the collation of sqlite3 database to sort case insensitively?
I have a query for sqlite3 database which provides the sorted data. The data are sorted on the basis of a column which is a varchar column "Name". Now when I do the query
select * from tableNames ...
6
votes
2answers
119 views
MySQL slow group by/order by
The following query is relatively slow (0.7 seconds with ~6k rows)
SELECT items.*, COUNT(transactions.ID)
FROM items
INNER JOIN users ON (items.USER = users.ID)
LEFT JOIN transactions ON ...
6
votes
2answers
84 views
How to OrderBy an integer in a string field in a Linq query
I have some data coming out of an DB that I can't readily change the schema of. I want to sort it and bind it to a control based on a numerical ID. The problem is that the API stores the number in a ...
6
votes
6answers
64 views
MySQL Ordering AA before A
I'm doing an e-commerce website for a client who sells lingerie, I've written up a bra size picker for them but they've come back to me today with a slight issue.
With bra sizes, AA is smaller than ...
6
votes
1answer
498 views
Extending Marc Gravell's Dynamic Linq OrderBy
I found Marc Gravell's dynamic order by great:
Dynamic LINQ OrderBy
I've put it in a class, LinqHelper. In this class I also have created two new classes, so that in my code I can do this:
var q = ...
6
votes
4answers
259 views
ORDER BY ASC with Nulls at the Bottom
I'm writing an SQL query that connects a schools table to a districts table. Simple One-To-Many relationship where each school is attached to one district. My query is as follows:
SELECT
...
6
votes
3answers
171 views
Sorting abstract datatypes in Haskell
For example I have the following,
type something = (Float, Float, Int, Aa, Bb, Cc, Int)
If I were to desire to find the smallest something in base to their first element (Float) how could I do ...
6
votes
2answers
329 views
Django : Order by position ignoring NULL
I have a problem with django queryset ordering.
My model contains a field named position (a PositiveSmallIntegerField), which I'd like to used to order query results.
I use order_by('position'), ...
6
votes
3answers
277 views
SQL LIKE, how to order results by weighted occurance count?
The Problem
I have my search term:
"Yellow large widgets"
I split the terms into it's 3 words:
1 = "Yellow";
2 = "Large";
2 = "Widgets";
I then search with:
SELECT * FROM widgets
WHERE ...
6
votes
4answers
85 views
MySQL Order By Help!
I am looking to do an order by in a certain order. I know I can modify the entire database but I would then need to modify the entire code base.
What I am have, is a column in a table 'games' called ...
6
votes
3answers
5k views
Linq-to-sql orderby thenby
I'm using the following query syntax
from table
where
where
orderby
orderby
Where the first orderby is a date and second orderby is a date. I would assume this would work like orderby thenby but ...
6
votes
1answer
2k views
Linq OrderBy breaks with navigation property being null
Working with four tables.
Users -> has basic user info including a userid and a departmentid (int)
Groups -> basic group info including a groupid
GroupsMembers -> table that has the relationship ...
6
votes
2answers
443 views
SQL multiple column ordering
I am trying to sort to multiple columns in SQL, and in different directions. coloumn1 would be sorted decending, and coloumn2 accending.
How can I do this?
6
votes
2answers
2k views
MySQL: Alternatives to ORDER BY RAND()
I've read about a few alternatives to MySQL's ORDER BY RAND() function, but most of the alternatives apply only to where on a single random result is needed.
Does anyone have any idea how to ...
6
votes
4answers
7k views
MS Sql: Conditional ORDER BY ASC/DESC Question
I want to to make to make the ordering in my query conditional so if it satisfiess the condition it should be ordered by descending
For instance:
SELECT * FROM Data ORDER BY SortOrder CASE WHEN ...
5
votes
5answers
87 views
Linq to Objects ordering by arbitrary number of parameters
I have a list of Func defining an ordering:
var ordering = new List<Func<Person, IComparable>>
{ x => x.Surname, x => x.FirstName };
I can order the results with ...
5
votes
2answers
110 views
specific Order by Linq to SQL
Is possible to order on Linq according to a specific order?
something like
List<bbHeader> bb = new List<bbHeader>();
bb.OrderBy(x => x.Country.CompareTo(new ...
5
votes
4answers
58 views
Group By specified numbers of ordered rows
I have such table in my MySQL database:
---------------------------
|fid | price | date |
---------------------------
| 1 | 1.23 | 2011-08-11 |
| 1 | 1.43 | 2011-08-12 |
| 1 | 1.54 | ...
5
votes
2answers
188 views
ORDER BY with Case-Statement DESC
How to ORDER BY with a CASE-Statement
first group: null values in date-column Col1 sorted by date-column Col2 DESC
second group: not-null values in date-column-Col1 sorted by Col1 DESC
I've ...
5
votes
2answers
81 views
SQL ORDER BY query
I want to have my table,rcarddet, ordered by "SDNO" (not primary key) in ascending order with the exception of "0". So it should turn out to be like:
1
1
2
.
.
10
0
0
My query now is:
SELECT *
...
5
votes
2answers
336 views
How to use Order By in a stored procedure without using dynamic SQL
I've the following MS SQL stored procedure. I need to sort the results without using dynamic SQL and sp_executesql method
@Order by can have the possible values ProductName ASC, ProductName DESC, ...
5
votes
3answers
126 views
MySQL - ordering by something not ASC or DESC
Say I have a table of flowers with associated colors. Is it possible to get a list of flowers and order them by, say, Yellow first, then Blue, then Red. Basically, I want to specify a list of values ...