0
votes
2answers
29 views
Strongly Typing a LINQ Query using multiple keys of complex objects
I can't figure out how to define the object used in my LINQ grouping query to allow them to be strongly type.
I've build a grouping query that uses two complex objects as keys. T …
2
votes
4answers
93 views
SELECT TOP 1 in a many to many query
I have a faily simple many to many schema, which looks like this:
What I'm trying to do is select all players with some arbitary conditions and I also want to select their most re …
7
votes
7answers
108 views
SQL “GROUP BY” issue
Hi,
I'm designing a shopping cart. To circumvent the problem of old invoices showing inaccurate pricing after a product's price gets changed, I moved the price field from the Prod …
1
vote
4answers
49 views
MAX on columns generated by SUM and GROUP BY
I'm trying to get the MAX on a column which is generated dynamically using the SUM statement. The SUM statement is used together with the 'GROUP by' syntax.
This is the original q …
0
votes
1answer
11 views
Linq - 2 tables - Sum
Hi, i have 2 tables:
Asiento
********
Id_Asiento integer key
Fecha date
It_Asiento
**********
Id_Asiento integer Forenkey
Importe float
I wan to do This SQL Query with Linq
se …
0
votes
1answer
22 views
How to concatenate multiple rows, where fieldnames are duplicated?
I am using SQL.
Here is an example of my table:
(There are actually thousands of rows like these, with varying course numbers.)
Course No | Meeting Day | Course Name | Instructor …
1
vote
3answers
46 views
collapsing NULL values in Oracle query
I often write queries wherein I pivot data and end up with NULL values that I want to collapse. E.g. data like the following:
id time_in time_out
1 2009-11-01
…
0
votes
2answers
22 views
mysql group by performance tuning
select field1,count(*) from table where $condition group by field1
select field2,count(*) from table where $condition group by field2
Basically that's what I'm doing the job now, …
1
vote
3answers
30 views
Is it safe to include extra columns in the SELECT list of a SQLite GROUP BY query?
I have a simple SQLite table called "message":
sequence INTEGER PRIMARY KEY
type TEXT
content TEXT
I want to get the content of the last message of each type (as determined by i …
0
votes
1answer
19 views
Odd GROUP BY output DB2 - Results not as expected
If I run the following query:
select load_cyc_num
, crnt_dnlq_age_cde
, sum(cc_min_pymt_amt) as min_pymt
, sum(ec_tot_bal) as budget
, case when ec_tot_bal > 0 then 'Y' else …
0
votes
2answers
34 views
Linq grouping by nullable datetime and using this as criteria
I am struggling with a nullable datetime column [DateInsp] in an ASP.NET app which uses SubSonic3, Linq, MS SQL Server 2005.
I had this all working when the datetime column [DateI …
0
votes
3answers
79 views
TSQL: Cannot perform an aggregate function AVG on COUNT(*) to find busiest hours of day
Consider a SQL Server table that holds log data. The important parts are:
CREATE TABLE [dbo].[CustomerLog](
[ID] [int] IDENTITY(1,1) NOT NULL,
[CustID] [int] NOT NULL,
…
0
votes
2answers
40 views
SQL Distinct Grouping?
Here is my query:
SELECT
dbo.EmailCampaignTracking.emailOpened,
dbo.EmailCampaignTracking.emailUnsubscribed,
dbo.EmailCampaignTracking.emailBounced,
COUNT(*)
FROM
dbo.E …
0
votes
2answers
64 views
Need some help with SQL GroupBY
I have a two column table as follows:
ID Emp ID
1 1
1 2
1 3
1 4
2 2
2 6
2 10
3 1
3 5
4 8
5 2
5 6
I need something …
1
vote
1answer
32 views
Aggregate functions - getting columns not included in the GROUP BY clause
I have a table which has three fields (item_id, source, and price). (item_id, source, and price) together make up the primary key.
item_id source price
------- ------- …
