[VIEWED 6093
TIMES]
|
SAVE! for ease of future access.
|
|
|
refugeeNP
Please log in to subscribe to refugeeNP's postings.
Posted on 04-26-11 7:04
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
What is the difference between WINDOW and GROUP BY clause?
How do you write the query below in SQL:1999 using WINDOW clause that is without using GROUP BY?
SELECT T.year, SUM (S.sales)
FROM Sales S, Times T
WHERE S.timeid = T.timeid
GROUP BY T.year
|
|
|
|
open
Please log in to subscribe to open's postings.
Posted on 04-26-11 7:37
PM [Snapshot: 21]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
I am not SQL Database guru but just check this works in your case.
SELECT T.year,
SUM (S.sales) OVER (PARTITION BY T.year)
FROM Sales S, Times T
WHERE S.timeid = T.timeid
Just give a try..
|
|
|
refugeeNP
Please log in to subscribe to refugeeNP's postings.
Posted on 04-26-11 7:56
PM [Snapshot: 39]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Nope It didn't work. Also I want it to be using WINDOW clause in SQL 1999.
Any help will be appreciated.
Also any idea about first qustion??
|
|
|
ketama
Please log in to subscribe to ketama's postings.
Posted on 04-27-11 12:20
AM [Snapshot: 135]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
|
|