-2
votes
3answers
87 views
MySQL 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
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". …
0
votes
4answers
35 views
How to reverse the default ordering in Mysql?
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 DESC?
1
vote
3answers
38 views
SQL order by a column from another table
Hello,
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).
I want to select entries …
0
votes
1answer
49 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
ORDER BY …
1
vote
1answer
72 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`.`cid` = …
1
vote
2answers
57 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 statement that is similar …
0
votes
1answer
57 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:
…
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 struggling to get …
1
vote
2answers
73 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.
3
votes
7answers
144 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 …
0
votes
2answers
49 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, this is using a …
0
votes
1answer
29 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
57 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 FROM itDocs
…
2
votes
1answer
96 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, …
0
votes
4answers
154 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 the last OrderNum …
