0
votes
1answer
37 views
How does mySQL handle dynamic value within ORDER BY
It stumbled upon me while I was reading the query in another post.
Take the following query for example (ignore the non-practical use of the ordering):
SELECT
*
FROM Members
OR …
1
vote
1answer
69 views
MySQL Wrong ORDER BY
SELECT `player`.`cid`, `player`.`k`, `player`.`d`, `gg`.`gg_id`, `gg`.`name`, `gg`.`img`, `cc`.`cid`, `cc`.`name`, `cc`.`class`, `cc`.`gg_id`
FROM `player`
LEFT JOIN `cc` ON `cc`. …
1
vote
2answers
51 views
LINQ, Skip, OrderBy, and SQL Server 2000
I'm accessing a data context object that is auto-generated by using LINQ to SQL. The SQL database is a SQL Server 2000 box. The class I'm working with is a SQL View. I have a state …
0
votes
0answers
31 views
How to get the records using order by and so on
I have a table categories containing categories id having the records of 1 to 20.
when i am doing the search query by using the IN function in mysql i got the results. but i am …
0
votes
1answer
56 views
How to sort model by values in a dictionary?
In Django, I have a model, and I will have a dictionary having the id's of objects in this model as keys, and a weight as values. I would like to use these weights in an order_by:
…
1
vote
2answers
71 views
How to get two random records with Django
How do I get two distinct random records using Django? I've seen questions about how to get one but I need to get two random records and they must differ.
0
votes
2answers
47 views
MySQL ORDER BY optimisation on range
Hello, I'd like MySQL to use the index to sort these rows.
SELECT
identity_ID
FROM
identity
WHERE
identity_modified > 1257140905
ORDER BY
identity_modified
However, t …
3
votes
7answers
141 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 the …
1
vote
2answers
84 views
how to do order-by in hibernate mapping
suppose Object A has a list of Object B, and Object B must have a object C, B can be order base on C.level .
In A.hbm.xml
<bag name="listB"
table="T_B"
…
0
votes
1answer
27 views
nHibernate order by N with SQL Server
With a SQL Query I can order by N, where N is a column index. For example
SELECT name, salary FROM employee ORDER BY 2;
How can I do this with nHibernate?
0
votes
2answers
55 views
SQL Conversion failed Error
WhenI call this stored procedure:
ALTER PROCEDURE [dbo].[GetSorted]
(
@OrderByColumn nvarchar(256)
)
AS
SET NOCOUNT ON
SELECT itDocs.AddedDate, itDocs.AddedBy FRO …
2
votes
1answer
86 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 …
0
votes
4answers
138 views
PostgreSQL SELECT the last order per customer per date range
In PostgreSQL:
I have a Table that has 3 columns:
CustomerNum, OrderNum, OrderDate.
There may(or may not) be many orders for each customer per date range. What I am needing is …
0
votes
5answers
69 views
SQL Order By and “Not-So-Much Group”
Hello,
Lets say I have a table:
--------------------------------------
| ID | DATE | GROUP | RESULT |
--------------------------------------
| 1 | 01/06 | Group1 | 12 …
0
votes
1answer
28 views
Ordering in a MySQL GROUP_CONCAT with a function in it
I want to order the results in a GROUP_CONCAT function. The problem is, that the selection in the GROUP_CONCAT-function is another function, like this (fantasy select):
SELECT a.n …
