8
votes
3answers
2k views
linq: multiple order by
i have table movies and categories, i what get ordered list by categoryID first and then by Name
movie table has columns: ID, Name, CategoryID
category table has: ID, Name
tried something like this …
6
votes
6answers
2k 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 …
4
votes
1answer
164 views
How to retrieve 10 latest DISTINCT IP’s from a MySQL table?
Hey guys,
I have a table containing pagehit (normalized) data and I need to grab the 10 latest unique ips.
I tried to do it like this:
SELECT * FROM spy_hits ORDER BY date desc GROUP BY ip LIMIT …
3
votes
7answers
149 views
SQL Server 2008: Ordering by datetime is too slow
My table (SQL Server 2008) has 1 million+ records, when I try to order records by datetime, it takes 1 second, but when I order by ID (int), it only takes about 0.1 second.
Is there any way to …
3
votes
4answers
844 views
How to select first ‘N’ records from a database containing million records?
I have an oracle database populated with million records. I am trying to write a SQL query that returns the first 'N" sorted records ( say 100 records) from the database based on certain condition.
…
3
votes
2answers
104 views
How do I return rows with a specific value first?
I want my query to return the rows of the table where a column contains a specific value first, and then return the rest of the rows alphabetized.
If I have a table something like this example:
- …
3
votes
4answers
397 views
MySQL Group By ordering
Hi all, I have the following table:
id time text otheridentifier
-------------------------------------------
1 6 apple 4
2 7 orange …
3
votes
4answers
318 views
Slow query when using ORDER BY
Here's the query (the largest table has about 40,000 rows)
SELECT
Course.CourseID,
Course.Description,
UserCourse.UserID,
UserCourse.TimeAllowed,
UserCourse.CreatedOn,
…
3
votes
2answers
362 views
Linq Query with SUM and ORDER BY
I have a (C#) class called Hit with an ItemID (int) and a Score (int) property. I skip the rest of the details to keep it short. Now in my code, I have a huge List on which I need to do the following …
3
votes
5answers
656 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 …
2
votes
1answer
103 views
Django ORM - select_related and order_by with foreign keys
I have a simple music schema: Artist, Release, Track, and Song. The first 3 are all logical constructs while the fourth (Song) is a specific instance of an (Artist, Release, Track) as an mp3, wav, …
2
votes
2answers
160 views
SQL Server : alias is ignored in Order by
We have two tables in our application that both have a ShowOrder column.We are using NHibernate in our application and using HQL we join these two tables ordered by ShowOrder of first table and second …
2
votes
3answers
110 views
SQL - Finding differences in row order of two tables
I have two tables of ID's and dates and I want to order both tables by date and see those ids that are not in the same order
e.g.
table_1
id | date
------------
A 01/01/09
B 02/01/09
…
2
votes
2answers
332 views
MySQL not using index with JOIN, WHERE and ORDER
We have two tables resembling a simple tag-record structure as follows (in reality it's much more complex but this is the essance of the problem):
tag (A.a) | recordId (A.b)
1 | 1
2 | …
2
votes
2answers
412 views
Mysql ORDER BY using date data row
I have a query something like this:
SELECT
title, desc, date
FROM
tablename
ORDER BY
date ASC, title ASC;
Works fine when the data actually has a date. Issue is, date submission is …
