active questions tagged order-by - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T08:27:43Zhttp://stackoverflow.com/feeds/tag/order-byhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1793147/sql-best-practice-to-deal-with-default-sort-order1SQL best practice to deal with default sort orderYada2009-11-24T21:47:26Z2009-12-08T19:25:33Z
<p>A lot of SQL code I've read, it seems like the developer assumes that the default sort order always hold. For example when building an HTML select list they would just <code>SELECT id, name FROM table</code> without issuing an <code>ORDER BY</code> clause.</p>
<p>From my own experience it seems like dbms alway order data using FIFO if no <code>ORDER BY</code> clause is given and no index. However, the order it is not guarantee. But I have never seen a dbms reordering data if there no change to the table.</p>
<p>Have you ever experience a dbms selecting data in a non deterministic order if there is no change to the table?</p>
<p>Is it best practice to always put an ORDER BY clause? </p>
http://stackoverflow.com/questions/1833943/sort-blank-entries-to-bottom-of-linq-query0Sort blank entries to bottom of LINQ query.sglantz2009-12-02T16:11:11Z2009-12-03T13:07:21Z
<p>I am trying to sort a LINQ to SQL query based on two fields. The first field is occasionally blank which automatically sorts to the top of an ascending query. Is there any way to make the blank entries sort to the bottom? </p>
<p>Here is an example:</p>
<pre><code>From x in SampleDataContext.Event _
Order By x.Date, x.Sequence_Number
Select x.Date, x.Sequence_Number
</code></pre>
<p>Would return:</p>
<ul>
<li>, 1</li>
<li>, 4</li>
<li>12/2/09, 5</li>
<li>12/3/09, 2</li>
<li>12/3/09, 3</li>
</ul>
<p>Desired order:</p>
<ul>
<li>12/2/09, 5</li>
<li>12/3/09, 2</li>
<li>12/3/09, 3</li>
<li>, 1</li>
<li>, 4</li>
</ul>
http://stackoverflow.com/questions/1817933/sql-server-how-to-order-by-date-if-the-date-is-getdate1SQL Server: How to order by date, if the date is < GetDate()Ev2009-11-30T05:03:07Z2009-11-30T05:12:46Z
<p>Hi,</p>
<p>Here's an interesting one... hope I can explain it well...</p>
<p>I have a collection of competitions in a single table in my SQL Server DB. I'm doing a full text search over them, which works fine. However, some of the competitions are closed, and I want these closed comps to show up after the open comps, while still respecting the rank we get from full text search.</p>
<p>So if I had an IsOpen bit feild, I would them ordered by </p>
<pre><code>ORDER BY IsOpen DESC, KEY_TBL.Rank DESC
</code></pre>
<p>Now the problem is I don't have an IsOpen bit field. Instead, I have a ClosedDate field, which is a datetime.</p>
<p>So What I really need to do is something like:</p>
<pre><code>ORDER BY (ClosingDate < GetDate()) ASC, KEY_TBL.Rank DESC
</code></pre>
<p>Anyone know how to do this?</p>
<p>Any ideas would be great! Thanks in advance.</p>
<p>-Ev</p>
http://stackoverflow.com/questions/1814208/mysql-forbids-me-to-make-my-colleague-look-like-a-moron-or-how-mysql-forgets-ta-1MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select union [closed]chanibal..pl2009-11-29T00:04:52Z2009-11-29T20:46:03Z
<p>One of our new employees made a really bad piece of code, not completely working, SQL injection points and stuff like that, what's really annoying is that he's not going to fix it as it's "working". I'm preparing an presentation that will make him suffer. To make his suffering eternal I wanted to show an SQL injection in the fullest form, that is steal his own email and password (OK, salted hash but still unthinkable to have a SQL, injection at our code)</p>
<p>OK, to the details, the SQL query is quite big so the thing I put here is just the problematic stuff - I narrowed the problem to and SQL query failing because of the order-by statement, example query:</p>
<p>First a <strong>working</strong> statement:</p>
<pre><code>select id, dupa from test where 2+2 = 5
union
select (select "pretty much anything"), dupa from test
order by dupa
limit 1;
</code></pre>
<p>And now the problematic version:</p>
<pre><code>select id, dupa from test where 2+2 = 5
union
select (select "pretty much anything"), dupa from test
order by test.dupa -- the problem lies here
limit 1;
</code></pre>
<p>The <code>order by</code> statement gives this problem:</p>
<blockquote>
<p>ERROR 1054 (42S22): Unknown column 'test.dupa' in 'order clause'</p>
</blockquote>
<p>As seen, the <code>order by dupa</code> works, <code>order by 2</code> also does, unfortunately as in all SQL injection attacks I have to deal with the remainders of the query </p>
<p>The injection is in the where part of the first statement.</p>
<p>The testing server is a recent MySQL on Linux, default configuration.</p>
http://stackoverflow.com/questions/1807079/how-to-reverse-the-default-ordering-in-mysql0How to reverse the default ordering in Mysql?Steven2009-11-27T06:22:17Z2009-11-27T06:47:30Z
<p>In Mysql, when you execute a select SQL statement, there is a default ordering if you don't include a sorting clause, how to reverse the default ordering? Just add <code>DESC</code>?</p>
http://stackoverflow.com/questions/1805600/sql-order-by-a-column-from-another-table1SQL order by a column from another tableFlorent22009-11-26T20:54:38Z2009-11-26T23:32:37Z
<p>Hello,</p>
<p>I have 3 tables: people, groups and memberships. Memberships is a join table between people and groups, and have 3 columns: personId, groupId and description (text).</p>
<p>I want to select entries from the memberships table depending on a groupId but sorting the result by the names of people associated to the found memberships (name is a column of people table)</p>
<pre><code>SELECT * FROM "memberships" WHERE ("memberships".groupId = 32) ORDER BY (?????)
</code></pre>
<p>Is it possible to achieve this in one single query? </p>
http://stackoverflow.com/questions/1777389/how-does-mysql-handle-dynamic-value-within-order-by0How does mySQL handle dynamic value within ORDER BYo.k.w2009-11-22T01:03:21Z2009-11-22T01:30:22Z
<p>It stumbled upon me while I was reading the query in another <a href="http://stackoverflow.com/questions/1777306/">post</a>.</p>
<p>Take the following query for example (ignore the non-practical use of the ordering):</p>
<pre><code>SELECT
*
FROM Members
ORDER BY (TIMESTAMPDIFF(FRAC_SECOND, DateCreated , SYSDATE()))
</code></pre>
<p>Say "Members" table has a huge row count (or the query is complex enough for it to be executed over at least dozen of milliseconds). How does mySQL or other mainstream DB engines evaluate the "<code>SYSDATE()</code>" in the "<code>ORDER BY</code>"?</p>
<p>Say the query takes half a second, the microsecond (<code>FRAC_SECOND</code>) of "SYSDATE" changes 1000 X 1000 X 0.5 = 500 000 times.</p>
<p>My questions are: </p>
<ol>
<li>Does the "SYSDATE" get fixed on the
start of the query execution or it
gets evaluated and changes as the
execution progresses?</li>
<li>If it's the latter, can I assume the ordering might be jumbled?</li>
</ol>
<p><strong>UPDATE:</strong><br>
My original post uses <code>NOW</code> as an example of dynamic value, it's <code>SYSDATE</code> now</p>
http://stackoverflow.com/questions/1772514/mysql-wrong-order-by1MySQL Wrong ORDER BYunknown (google)2009-11-20T18:49:32Z2009-11-20T19:10:03Z
<pre><code>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`.`cid` = `player`.`cid`
LEFT JOIN `gg` ON `gg`.`gg_id` = `cc`.`gg_id`
ORDER BY (`k`-`d`) DESC
</code></pre>
<p>i want to order by the K minus the D values, but im not getting it correctly
what im a doing wrong? with or without DESC/ASC, its wrong</p>
http://stackoverflow.com/questions/1751232/linq-skip-orderby-and-sql-server-20001LINQ, Skip, OrderBy, and SQL Server 2000Jason N. Gaylord2009-11-17T19:37:27Z2009-11-17T21:03:12Z
<p>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 statement that is similar to this:</p>
<pre><code>query = _context.OrderDetails
.Where(w => w.Product == "TEST")
.OrderBy(o => o.DateCompleted)
.ThenBy(t => t.LineItemId)
.Skip(startRowIndex)
.Take(maximumRows);
</code></pre>
<p>However, when the value of Skip is anything but 0, I get this error:</p>
<p><em>This provider supports Skip() only over ordered queries returning entities or projections that contain all identity columns, where the query is a single-table (non-join) query, or is a Distinct, Except, Intersect, or Union (not Concat) operation.</em> </p>
<p>I'd think that between teh DateCompleted and LineItemId that the rows would be unique, but then again this pops up. Does it have to do with this being a view? If so, how can I circumvent this issue?</p>
http://stackoverflow.com/questions/1740505/how-to-get-the-records-using-order-by-and-so-on0How to get the records using order by and so onpaulrajj2009-11-16T06:54:16Z2009-11-17T07:43:18Z
<p>I have a table categories containing categories id having the records of 1 to 20. </p>
<p>when i am doing the search query by using the IN function in mysql i got the results. but i am struggling to get the results using order by.</p>
<p>The limit may be vary for every search as this is one of the input value.</p>
<p>For example I have tried this query to find out the search results, </p>
<pre><code>select * from categories where category in (20,16,12,8) order by rand(), id limit 0,6
</code></pre>
<p>this query is executed and the results are in random category_id.
the results will be, </p>
<pre><code>8
12
16
20
</code></pre>
<p>and following this, another two records must be</p>
<pre><code>8
12
</code></pre>
<p>If category_id contains only one record for 8 then, it should follow from 12,16.</p>
<p>How can i achieve this ? thanks in advance.</p>
<p>Edit :
My table structure is as follows,</p>
<pre><code>id int(10)
userid int(10)
question text
dated datetime
category varchar(300)
qtype varchar(250)
</code></pre>
<p>sample records are,</p>
<pre><code>id userid question dated category qtype
1 101 sample1 2009/05/16 1 case
2 102 sample2 2009/05/08 8 case
3 101 sample3 2009/05/10 5 multiple
4 103 sample4 2009/05/12 12 fill
5 102 sample5 2009/05/12 12 case
6 104 sample6 2009/05/14 16 fill
7 103 sample7 2009/05/15 8 multiple
8 101 sample8 2009/06/02 12 case
9 104 sample9 2009/06/14 16 fill
10 105 sample10 2009/06/15 20 case
</code></pre>
<p>I have selected the records ordered by dated asc.. in this i need to check with the category only when i search for the records. for that i am using IN function and the limit is the input value. for example, the value 8 is already there, then i need to get another value using order by dated in ascending. the searched categories and limit value is changed based on the search condition. thanks. </p>
http://stackoverflow.com/questions/1743288/how-to-sort-model-by-values-in-a-dictionary0How to sort model by values in a dictionary?miernik2009-11-16T16:32:40Z2009-11-16T16:55:41Z
<p>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:</p>
<pre><code>MyModel.objects.filter(title__icontains=query).order_by( 'value_from_the_dictionary' )
</code></pre>
<p>How to make this work?</p>
<p>I can't put the weights in the model, as they will be different in each call of this view, and I don't want to save them anywhere, they will be calculated on each query of the URL.</p>
http://stackoverflow.com/questions/1731346/how-to-get-two-random-records-with-django1How to get two random records with DjangoMatt McCormick2009-11-13T19:27:42Z2009-11-13T19:31:24Z
<p>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.</p>
http://stackoverflow.com/questions/1713252/mysql-order-by-optimisation-on-range0MySQL ORDER BY optimisation on rangethomasrutter2009-11-11T05:34:47Z2009-11-12T19:08:51Z
<p>Hello, I'd like MySQL to use the index to sort these rows.</p>
<pre><code>SELECT
identity_ID
FROM
identity
WHERE
identity_modified > 1257140905
ORDER BY
identity_modified
</code></pre>
<p>However, this is using a filesort for sorting (undesirable).</p>
<p>Now, if I leave off the ORDER BY clause here, the rows come out sorted <em>simply as a consequence of using the index to satisfy the WHERE clause</em>.</p>
<p>So, I can get the behaviour I want by leaving off the WHERE clause, but then I'm relying on MySQL's behaviour to be consistent for the rows to arrive in order, and might get stung in future simply if MySQL changes its internal behaviour.</p>
<p>What should I do? Any way of telling MySQL that since the index is stored in order (b-tree) that it doesn't need a filesort for this?</p>
<p>The table looks like this (simplified):</p>
<pre><code>CREATE TABLE IF NOT EXISTS `identity` (
`identity_ID` int(11) NOT NULL auto_increment,
`identity_modified` int(11) NOT NULL,
PRIMARY KEY (`identity_ID`),
KEY `identity_modified` (`identity_modified`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;
</code></pre>
http://stackoverflow.com/questions/1716798/sql-server-2008-ordering-by-datetime-is-too-slow3SQL Server 2008: Ordering by datetime is too slowsilent2009-11-11T17:31:39Z2009-11-11T20:37:01Z
<p>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.</p>
<p>Is there any way to improve the efficiency? (I already added the datetime column to the index)</p>
http://stackoverflow.com/questions/1366197/how-to-do-order-by-in-hibernate-mapping1how to do order-by in hibernate mappingshrimpy2009-09-02T07:01:32Z2009-11-06T01:59:42Z
<p>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 .</p>
<p>In A.hbm.xml</p>
<pre><code><bag name="listB"
table="T_B"
inverse="false"
order-by="?? what should i do here???"
>
<key column="ID_A" not-null="true"/>
<many-to-many column="ID_B" class="B"/>
</bag>
</code></pre>
http://stackoverflow.com/questions/1633220/nhibernate-order-by-n-with-sql-server0nHibernate order by N with SQL ServerIan Quigley2009-10-27T19:45:02Z2009-10-27T20:03:00Z
<p>With a SQL Query I can <code>order by</code> N, where N is a column index. For example</p>
<pre><code> SELECT name, salary FROM employee ORDER BY 2;
</code></pre>
<p>How can I do this with nHibernate?</p>
http://stackoverflow.com/questions/1621008/sql-conversion-failed-error0SQL Conversion failed Errorsamuel2009-10-25T14:09:16Z2009-10-25T19:29:59Z
<p>WhenI call this stored procedure:</p>
<pre><code>ALTER PROCEDURE [dbo].[GetSorted]
(
@OrderByColumn nvarchar(256)
)
AS
SET NOCOUNT ON
SELECT itDocs.AddedDate, itDocs.AddedBy FROM itDocs
ORDER BY
CASE WHEN @OrderByColumn='AddedDate' THEN itDocs.AddedDate
WHEN @OrderByColumn='AddedBy' THEN itDocs.AddedBy
END ASC
</code></pre>
<p>I get error: </p>
<blockquote>
<p>Conversion failed when converting date
and/or time from character string</p>
</blockquote>
<p>.</p>
<p>This is how I call SP:</p>
<pre><code>DECLARE @return_value int
EXEC @return_value = [dbo].[GetSorted]
@OrderByColumn = 'AddedBy'
SELECT 'Return Value' = @return_value
GO
</code></pre>
<p><strong>UPDATE:</strong>
If I use multi-case approach as suggested in fist 2 answers,
I get error when trying to added another case for orientation:</p>
<pre><code> ORDER BY
CASE WHEN @OrderDirection=0 THEN
CASE WHEN @OrderByColumn='AddedDate' THEN itDocs.AddedDate END ASC,
CASE WHEN @OrderByColumn='AddedBy' THEN itDocs.AddedBy END ASC
end
CASE WHEN @OrderDirection=1 THEN
</code></pre>
http://stackoverflow.com/questions/1611892/django-orm-selectrelated-and-orderby-with-foreign-keys2Django ORM - select_related and order_by with foreign keysRob Crowell2009-10-23T07:37:00Z2009-10-23T10:07:03Z
<p>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, ogg, whatever.</p>
<p>I am having trouble generating an ordered list of the Songs in the database. The catch is that both <code>Track</code> and <code>Release</code> have an <code>Artist</code>. While <code>Song.Track.Artist</code> is always the performer name, <code>Song.Track.Release.Artist</code> may either be a performer name or "Various Artists" for compilations. I want to be able to sort by one or the other, and I can't figure out the correct way to make this work.</p>
<p>Here's my schema:</p>
<pre><code>class Artist(models.Model):
name = models.CharField(max_length=512)
class Release(models.Model):
name = models.CharField(max_length=512)
artist = models.ForeignKey(Artist)
class Track(models.Model):
name = models.CharField(max_length=512)
track_number = models.IntegerField('Position of the track on its release')
length = models.IntegerField('Length of the song in seconds')
artist = models.ForeignKey(Artist)
release = models.ForeignKey(Release)
class Song(models.Model):
bitrate = models.IntegerField('Bitrate of the song in kbps')
location = models.CharField('Permanent storage location of the file', max_length=1024)
owner = models.ForeignKey(User)
track = models.ForeignKey(Track)
</code></pre>
<p>My query should be fairly simple; filter for all songs owned by a specific user, and then sort them by either <code>Song.Track.Artist.name</code> or <code>Song.Track.Release.Artist.name</code>. Here's my code inside a view, which is sorting by <code>Song.Track.Artist.name</code>:</p>
<pre><code>songs = Song.objects.filter(owner=request.user).select_related('track__artist', 'track__release', 'track__release__artist').order_by('player_artist.name')
</code></pre>
<p>I can't get <code>order_by</code> to work unless I use <code>tblname.colname</code>. I took a look at the underlying query object's <code>as_sql</code> method, which indicates that when the inner join is made to get <code>Song.Track.Release.Artist</code> the temporary name <code>T6</code> is used for the <code>Artist</code> table since an inner join was already done on this same table to get <code>Song.Track.Artist</code>:</p>
<pre><code>>>> songs = Song.objects.filter(owner=request.user).select_related('track__artist', 'track__release', 'track__release__artist').order_by('T6.name')
>>> print songs.query.as_sql()
('SELECT "player_song"."id", "player_song"."bitrate", "player_song"."location",
"player_song"."owner_id", "player_song"."track_id", "player_track"."id",
"player_track"."name", "player_track"."track_number", "player_track"."length",
"player_track"."artist_id", "player_track"."release_id", "player_artist"."id",
"player_artist"."name", "player_release"."id", "player_release"."name",
"player_release"."artist_id", T6."id", T6."name" FROM "player_song" INNER JOIN
"player_track" ON ("player_song"."track_id" = "player_track"."id") INNER JOIN
"player_artist" ON ("player_track"."artist_id" = "player_artist"."id") INNER JOIN
"player_release" ON ("player_track"."release_id" = "player_release"."id") INNER JOIN
"player_artist" T6 ON ("player_release"."artist_id" = T6."id") WHERE
"player_song"."owner_id" = %s ORDER BY T6.name ASC', (1,))
</code></pre>
<p>When I put this as the table name in <code>order_by</code> it does work (see example output above), but this seems entirely non-portable. Surely there's a better way to do this! What am I missing?</p>
http://stackoverflow.com/questions/1595574/postgresql-select-the-last-order-per-customer-per-date-range0PostgreSQL SELECT the last order per customer per date rangeWolfmanDragon2009-10-20T15:44:16Z2009-10-20T21:51:50Z
<p>In PostgreSQL:
I have a Table that has 3 columns:</p>
<p><code>CustomerNum, OrderNum, OrderDate</code>. </p>
<p>There may(or may not) be many orders for each customer per date range. What I am needing is the last OrderNum for each Customer that lies in the date range that is supplied.
What I have been doing is getting a ResultSet of the customers and querying each one separately, but this is taking too much time.</p>
<p>Is there any way of using a sub-select to select out the customers, then get the last OrderNum for each Customer?</p>
http://stackoverflow.com/questions/1579437/sql-order-by-and-not-so-much-group0SQL Order By and "Not-So-Much Group"Huy Tran2009-10-16T17:48:27Z2009-10-16T19:13:39Z
<p>Hello,</p>
<pre><code>Lets say I have a table:
--------------------------------------
| ID | DATE | GROUP | RESULT |
--------------------------------------
| 1 | 01/06 | Group1 | 12345 |
| 2 | 01/05 | Group2 | 54321 |
| 3 | 01/04 | Group1 | 11111 |
--------------------------------------
</code></pre>
<p>I want to order the result by the most recent date at the top but group the "group" column together, but still have distinct entries. The result that I want would be:</p>
<pre><code>1 | 01/06 | Group1 | 12345
3 | 01/04 | Group1 | 11111
2 | 01/05 | Group2 | 54321
</code></pre>
<p>What would be a query to get that result?</p>
<p>thank you!</p>
<p>EDIT:</p>
<p>I'm using MSSQL. I'll look into translating the oracle query into MS SQL and report my results.</p>
<p>EDIT</p>
<p>SQL Server 2000, so OVER/PARTITION is not supported =[</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1577860/ordering-in-a-mysql-groupconcat-with-a-function-in-it0Ordering in a MySQL GROUP_CONCAT with a function in itacme2009-10-16T12:48:10Z2009-10-16T13:29:52Z
<p>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):</p>
<pre><code>SELECT a.name,
GROUP_CONCAT(DISTINCT CONCAT_WS(':', b.id, c.name) ORDER BY b.id ASC) AS course
FROM people a, stuff b, courses c
GROUP BY a.id
</code></pre>
<p>I want to get a result like (ordered by b.id):</p>
<pre><code>michael 1:science,2:maths,3:physics
</code></pre>
<p>but I get:</p>
<pre><code>michael 2:maths,1:science,3:physics
</code></pre>
<p>Does anyone know how I can order by b.id in my group_concat here?</p>
http://stackoverflow.com/questions/1548322/linq-to-sql-lambda-exp-orderby-case-when0LINQ to SQL lambda exp. OrderBy, Case WhenKordonme2009-10-10T16:03:21Z2009-10-12T14:13:36Z
<p>Hi guys!</p>
<p>Going to need your help on this one.</p>
<p>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 following expression, but it just doesn't seem to work :(</p>
<pre><code>return db.Topics
.Where(t => t.ForumID == id)
.OrderBy(
t => t.Replies
.OrderBy(r => r.AddDatetime.Equals(System.Data.SqlTypes.SqlDateTime.Null.Value) ? t.AddDatetime : r.AddDatetime)
.Select(r => r.AddDatetime)
.First()
);
</code></pre>
http://stackoverflow.com/questions/1545803/i-want-to-show-records-from-a-table-having-a-date-column-from-sqldatabase-in-date0I want to show records from a table having a date column from sqldatabase in dates order. How should I?dnyaneshwar2009-10-09T20:06:23Z2009-10-10T03:00:18Z
<p>I want to show records from a table having a date column from sqldatabase in dates order. How should I?</p>
http://stackoverflow.com/questions/1545888/sql-order-by-date-problem0SQL ORDER BY date problemdnyaneshwar2009-10-09T20:27:06Z2009-10-10T00:57:35Z
<p>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.</p>
<p>The query I'm using is:</p>
<pre><code>SELECT date FROM tbemp ORDER BY date ASC
</code></pre>
<p>Results are:</p>
<pre><code>01/02/2009
03/01/2009
04/06/2009
05/03/2009
06/12/2008
07/02/2009
</code></pre>
<p>Results should be:</p>
<pre><code>06/12/2008
03/01/2009
01/02/2009
07/02/2009
</code></pre>
<p>I need to select the date in the format above. </p>
<p>Your help is much appreciated.</p>
http://stackoverflow.com/questions/758655/ms-sql-conditional-order-by-asc-desc-question2MS Sql: Conditional ORDER BY ASC/DESC QuestionShimmy2009-04-17T01:09:00Z2009-09-28T21:10:39Z
<p>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 </p>
<p>For instance:</p>
<pre><code>SELECT * FROM Data ORDER BY SortOrder CASE WHEN @Direction = 1 THEN DESC END
</code></pre>
http://stackoverflow.com/questions/1367154/sql-server-alias-is-ignored-in-order-by2SQL Server : alias is ignored in Order by Beatles16922009-09-02T11:30:25Z2009-09-22T17:43:49Z
<p>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 table respectively.
Here's a simplified version of my query :</p>
<pre><code>SELECT pr.Id as Id,pr.Title as Title, pr.ShowOrder as ShowOrder
FROM Process pr
INNER JOIN ProcessGroup prg ON pr.GroupId=prg.Id
ORDER BY prg.ShowOrder,pr.ShowOrder
</code></pre>
<p>In general, our application is working without any problem.But we have an old application and a conversion routine to convert its database to our new application database.</p>
<p>Whenever we convert an old database to our new database An error will occur when the SQL server wants to execute the above query.
The exception says: "A column has been specified more than once in the order by list"!!!
If we select pr.ShowOrder without an alias everything is OK .It seems that if there's a ShowOrder alias in select list ,SQL server ignores table aliases and assumes that pr.ShowOrder and prg.ShowOrder are the same.</p>
http://stackoverflow.com/questions/1433088/asp-net-mvc-model-orderby-date-has-no-effect0ASP.NET MVC - Model.OrderBy Date has no effectludicco2009-09-16T13:49:05Z2009-09-16T16:35:26Z
<p>Hello, I'm having some difficulties to sort my results by Date. Is there any special method?
Because I'm doing this right now:</p>
<pre><code>var db = new DB();
var articles = db.Articles;
var orderedArticles = articles.OrderBy(a => a.Date);
return View(orderedArticles.ToList());
</code></pre>
<p>Where Date is a datetime field.
And there is no effect for <b>OrderBy(..)</b> or <b>OrderByDescending(..)</b></p>
<p>So I managed to check what is happening.</p>
<p>Everytime I add a new Article I'm just using the date on not the time so
if I have two articles both for the same day for example:
with:</p>
<pre><code>var orderedArticles = db.Articles.OrderByDescending(a => a.Date).ToList();
</code></pre>
<p>I would have</p>
<pre><code>Id Title Date
10 First Added Article 16/09/2009 00:00
11 Second Added Article 16/09/2009 00:00
15 Old Article Added Later 15/09/2009 00:00
</code></pre>
<p>So you can see that is filtering by date, but the thing is when I have the same date the sorting loses the focus.
So what I did is, orderBy two different contexts like first order by Id and later order by Date:</p>
<pre><code>var orderedArticles = db.Articles.OrderByDescending(a => a.Id).OrderByDescending(a => a.Date).ToList();
</code></pre>
<p>So after this I have the following:</p>
<pre><code>Id Title Date
11 Second Added Article 16/09/2009 00:00
10 First Added Article 16/09/2009 00:00
15 Old Article Added Later 15/09/2009 00:00
</code></pre>
<p>I really don't know if this is the right way to do it because the main problem is that when you submit a date field like 16/09/2009 it sets the time to 00:00 and this is a problem on this situation.</p>
http://stackoverflow.com/questions/1306359/order-by-in-a-sql-server-2008-view0ORDER BY in a Sql Server 2008 vieweidylon2009-08-20T13:53:59Z2009-09-15T14:03:41Z
<p>Hi all... we have a view in our database which has an ORDER BY in it.
Now, I realize views generally don't order, because different people may use it for different things, and want it differently ordered. This view however is used for a <strong>VERY SPECIFIC</strong> use-case which demands a certain order. (It is team standings for a soccer league.)</p>
<p>The database is Sql Server 2008 Express, v.10.0.1763.0 on a Windows Server 2003 R2 box.</p>
<p>The view is defined as such: </p>
<pre><code>CREATE VIEW season.CurrentStandingsOrdered
AS
SELECT TOP 100 PERCENT *, season.GetRanking(TEAMID) RANKING
FROM season.CurrentStandings
ORDER BY
GENDER, TEAMYEAR, CODE, POINTS DESC,
FORFEITS, GOALS_AGAINST, GOALS_FOR DESC,
DIFFERENTIAL, RANKING
</code></pre>
<p>It returns: </p>
<pre><code>GENDER, TEAMYEAR, CODE, TEAMID, CLUB, NAME,
WINS, LOSSES, TIES, GOALS_FOR, GOALS_AGAINST,
DIFFERENTIAL, POINTS, FORFEITS, RANKING
</code></pre>
<p>Now, when I run a <strong>SELECT</strong> against the view, it orders the results by <strong>GENDER, TEAMYEAR, CODE, TEAMID</strong>. Notice that it is ordering by <strong>TEAMID</strong> instead of <strong>POINTS</strong> as the order by clause specifies. </p>
<p>However, if I copy the SQL statement and run it exactly as is in a new query window, it orders correctly as specified by the <strong>ORDER BY</strong> clause.</p>
http://stackoverflow.com/questions/1410048/how-to-select-first-n-records-from-a-database-containing-million-records3How to select first 'N' records from a database containing million records?aJ2009-09-11T09:53:04Z2009-09-14T13:45:32Z
<p>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.</p>
<pre><code>SELECT *
FROM myTable
Where SIZE > 2000
ORDER BY NAME DESC
</code></pre>
<p>Then programmatically select first N records.</p>
<p>The problem with this approach is :</p>
<ul>
<li>The query results into half million
records and "ORDER BY NAME" causes
all the records to be sorted on NAME in the descending order. This sorting is taking lot of time. (nearly 30-40 seconds. If I omit ORDER BY, it takes only 1 second).</li>
<li>After the sort I am interested in
only first N (100) records. So the sorting of complete records is not useful.</li>
</ul>
<p>My questions are:</p>
<ol>
<li>Is it possible to specify the 'N' in
query itself? ( so that sort applies to only N records and query becomes faster).</li>
<li>Any better way in SQL to improve the query to sort
only N elements and return in quick
time.</li>
</ol>
http://stackoverflow.com/questions/1414123/sql-select-order-by-2-columns-and-group-by0SQL SELECT order by 2 columns and group by Actionscript32009-09-12T02:54:03Z2009-09-12T04:47:03Z
<p>Here're the RS return and the sql issued, </p>
<pre><code>SELECT *, (UNIX_TIMESTAMP(end_time) - UNIX_TIMESTAMP(start_time)) AS T
FROM games
WHERE game_status > 10
ORDER BY status, T;
game_id, player_id, start_time, end_time, score, game_status, is_enabled, T
65, 22, '2009-09-11 17:50:35', '2009-09-11 18:03:07', 17, 11, 1, 752
73, 18, '2009-09-11 18:55:07', '2009-09-11 19:09:07', 30, 11, 1, 840
68, 20, '2009-09-11 18:03:08', '2009-09-11 18:21:52', 48, 11, 1, 1124
35, 18, '2009-09-11 15:46:05', '2009-09-11 16:25:10', 80, 11, 1, 2345
13, 8, '2009-09-11 12:33:31', '2009-09-11 15:21:11', 40, 11, 1, 10060
11, 5, '2009-09-11 12:22:34', '2009-09-11 15:21:42', 55, 11, 1, 10748
34, 17, '2009-09-11 15:45:43', '2009-09-11 21:00:45', 49, 11, 1, 18902
2, 1, '2009-09-10 20:46:59', '2009-09-11 23:45:21', 3, 11, 1, 97102
84, 1, '2009-09-11 23:51:29', '2009-09-11 23:51:42', 10, 12, 1, 13
</code></pre>
<p><hr /></p>
<p>I 'd like to group by player_id, (i.e. take the best result each Player_id, it's determined by "game_status - the min", and the time T,</p>
<p>so I added a group by clause, but it doesn't return the min </p>
<pre><code>SELECT *, (UNIX_TIMESTAMP(end_time) - UNIX_TIMESTAMP(start_time)) AS T
FROM games
WHERE game_status > 10
GROUP BY player_id
ORDER BY game_status, T;
35, 18, '2009-09-11 15:46:05', '2009-09-11 16:25:10', 80, 11, 1, 2345
13, 8, '2009-09-11 12:33:31', '2009-09-11 15:21:11', 40, 11, 1, 10060
34, 17, '2009-09-11 15:45:43', '2009-09-11 21:00:45', 49, 11, 1, 18902
1, 1, '2009-09-10 20:39:44', '2009-09-10 20:41:21', 10, 12, 1, 97
24, 12, '2009-09-11 14:46:06', '2009-09-11 14:53:30', 10, 12, 1, 444
5, 3, '2009-09-11 10:56:22', '2009-09-11 11:13:01', 11, 12, 1, 999
37, 20, '2009-09-11 15:51:13', '2009-09-11 16:15:04', 14, 12, 1, 1431
79, 31, '2009-09-11 20:34:17', '2009-09-11 20:43:29', 4, 13, 1, 552
18, 9, '2009-09-11 13:09:47', '2009-09-11 18:33:10', 2, 13, 1, 19403
72, 30, '2009-09-11 18:46:29', '2009-09-11 18:48:44', 0, 14, 1, 135
40, 22, '2009-09-11 16:12:39', '2009-09-11 16:18:23', 3, 14, 1, 344
8, 5, '2009-09-11 12:15:54', '2009-09-11 12:21:48', 25, 14, 1, 354
85, 33, '2009-09-12 01:14:01', '2009-09-12 01:20:43', 0, 14, 1, 402
22, 11, '2009-09-11 13:50:41', '2009-09-11 13:57:24', 7, 14, 1, 403
SELECT *, min(UNIX_TIMESTAMP(end_time) - UNIX_TIMESTAMP(start_time)) AS T
FROM games
WHERE game_status > 10
GROUP BY player_id
ORDER BY game_status, T;
</code></pre>
<p>If I select min(T), it doesn't return the min row, but the min value on the hold column.</p>
<p>I 'd searched for some method with self-join, say, <a href="http://www.xaprb.com/blog/2006/12/07/how-to-select-the-firstleastmax-row-per-group-in-sql/" rel="nofollow">http://www.xaprb.com/blog/2006/12/07/how-to-select-the-firstleastmax-row-per-group-in-sql/</a></p>
<p>The subquery SELECT for min(), but I can't issue two min() on two columns as it doesn't return the specific rows I wanna.</p>
<pre><code>select type, min(price) as minprice
from fruits
group by type;
</code></pre>
<p>I hope there's a way as a filter on the first SQL to remove the duplicated player_id rows.
Thanks for any feedback.</p>