Viewing 8 posts - 1 through 8 (of 8 total)
Peter Brinkhaus (8/12/2012)
August 12, 2012 at 9:11 pm
Luis Cazares (8/8/2012)
However, you might find useful to use a CTE with the ranking...
August 8, 2012 at 8:00 pm
i'm sorry for not describe it clearly. What i want is exactly same like query that i made before that i made before
SELECT
test2.*,
sellerFirstName = (SELECT TOP 1 test1.FirstName FROM #test_table1...
August 8, 2012 at 8:56 am
Robin Sasson (5/1/2012)
If not then I suspect the issue is at the SQL Server.
If you are passing a...
May 1, 2012 at 2:51 am
Hi Paul,
Sorry for not respond for a few days....
It takes a time for me to learn your solution,cause i'm new to many sql server keywords such as ROW_NUMBER and partition,...
January 18, 2012 at 8:28 pm
ChrisM@home (1/15/2012)
martin.david (1/15/2012)
ChrisM@home (1/15/2012)
Hi MartinBy "sequence in data" - do you mean sequence by ID?
Cheers
Hi,
i'm sorry, maybe i'm using wrong word for my problem..
sequence that i mean is same transaction...
January 15, 2012 at 5:48 am
ChrisM@home (1/15/2012)
Hi MartinBy "sequence in data" - do you mean sequence by ID?
Cheers
Hi,
i'm sorry, maybe i'm using wrong word for my problem..
sequence that i mean is same transaction that occur...
January 15, 2012 at 1:47 am
ChrisM@home (1/14/2012)
I think this is what you're looking for:
SELECT
Date,
Price,
AskClient,
Dupes = COUNT(*)
FROM #trading
GROUP...
January 14, 2012 at 10:03 pm
Viewing 8 posts - 1 through 8 (of 8 total)