Tagged Questions

0
votes
1answer
23 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
51 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 …
0
votes
4answers
89 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 …
2
votes
1answer
62 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
5answers
68 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
2answers
98 views

LINQ to SQL lambda exp. OrderBy, Case When

Hi guys! Going to need your help on this one. I'm trying to OrderBy first reply datetime if present. If it's empty/null, it must order by topic datetime. I've ended up with the f …
0
votes
2answers
94 views

SQL ORDER BY date problem

Can you please help me in solving this problem. I am trying to order the results of an SQL query by date, but I'm not getting the results I need. The query I'm using is: SELECT d …
0
votes
1answer
24 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 …
3
votes
4answers
612 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 c …
0
votes
5answers
40 views

I want to show records from a table having a date column from sqldatabase in dates order. How should I?

I want to show records from a table having a date column from sqldatabase in dates order. How should I?
1
vote
2answers
75 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
2answers
114 views

ASP.NET MVC - Model.OrderBy Date has no effect

Hello, I'm having some difficulties to sort my results by Date. Is there any special method? Because I'm doing this right now: var db = new DB(); var articles = db.Articles; var o …
2
votes
2answers
125 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 fi …
1
vote
3answers
206 views

MySQL Union Query w/ Left Join - Order By Error ?

We have a Union Query. Here's a basic (similar) example: SELECT a.Name, b.Info FROM a LEFT JOIN b ON (a.ID = b.ID) WHERE a.Name LIKE "a%" UNION SELECT a.Name, b.Info FROM a LEF …
0
votes
5answers
256 views

SQL SELECT order by 2 columns and group by

Here're the RS return and the sql issued, SELECT *, (UNIX_TIMESTAMP(end_time) - UNIX_TIMESTAMP(start_time)) AS T FROM games WHERE game_status > 10 ORDER BY status, T; game_ …

1 2 3 4 5 next
15 30 50 per page