Tagged Questions
3
votes
1answer
176 views
LINQ query using join and aggregate functions
Urgh...my LINQ has suddenly taken a turn for the worse!!
I have two tables and want to join and perform aggregate functions upon the tables.
Firstly, is this possible, I am assuming it is, and ...
3
votes
2answers
2k views
SQL Count where clause
I have the the following SQL statement:
SELECT [l.LeagueId] AS LeagueId, [l.LeagueName] AS NAME, [lp.PositionId]
FROM (Leagues l INNER JOIN
Lineups lp ON ...
1
vote
1answer
66 views
Converting complex mysql SELECT into UPDATE
I have been trying to convert a complex SELECT query to an UPDATE query, but I keep getting the 1064 syntax error.
The goal for the query is to update certain rows which meet particular conditions, ...
1
vote
5answers
5k views
Complex join with nested group-by/having clause?
I ultimately need a list of "import" records that include "album"
records which only have one "song" each.
This is what I'm using now:
select i.id, i.created_at
from imports i
where i.id in (
...
0
votes
1answer
18 views
How to check if rows exist during a mysql search JOIN query?
I have this sql search query that works, but it only works if votes exist in the votes table.
mysql_query("SELECT m.Title, r.Subject, SUM(v.IsGood) AS Good, SUM(v.IsBad) AS Bad
FROM Movies m
...
0
votes
1answer
1k views
NHibernate: SELECT MAX() with JOIN
I have a Vendor. Every Vendor has several Reservations, with a ReservationDate on it.
I want a list of Vendors that have not made a reservation yet today.
In SQL I would do something like this:
...