Viewing 8 posts - 1 through 8 (of 8 total)
I've tried the solution of SSCrazy Eights and this solution is perfect.
Is there an explanation why your solution is working and mine not?
August 11, 2009 at 2:11 pm
You are right. I especially moved to SQL 2008 to use this time field.
I don't think that you have already a forum for SQL 2008?
If I run it without the...
August 11, 2009 at 1:17 pm
Thanks. This was really helpful.
Also the solution with CTE is very interesting to avoid writing multiple times
RANK() OVER (ORDER BY endTime) AS ranking
August 5, 2009 at 7:35 am
I understand. So I have to write the following:
CREATE TABLE #tblResults (participant_id INT, endTime TIME)
INSERT INTO #tblResults VALUES (1,'11:25')
INSERT INTO #tblResults VALUES (3,'11:26')
INSERT INTO #tblResults VALUES (2,'11:27')
INSERT INTO #tblResults VALUES...
August 3, 2009 at 9:50 am
How to avoid negative points
I was trying the following:
CREATE TABLE #tblResults (participant_id INT, endTime TIME)
INSERT INTO #tblResults VALUES (1,'11:25')
INSERT INTO #tblResults VALUES (3,'11:26')
INSERT INTO #tblResults VALUES (2,'11:27')
INSERT INTO #tblResults VALUES...
August 3, 2009 at 9:07 am
When the two PC's are connected through network cards it is not a problem. That is working.
But it is when you want to dial-in (or using direct cable connection). It...
October 17, 2001 at 11:53 pm
Yes I'm running SP1 for SQL2000.
I'm connecting using TCP/IP.
In the second scenario with the direct cable connection it is only possible to use TCP/IP because on Windows98 you can only...
October 16, 2001 at 11:42 pm
Viewing 8 posts - 1 through 8 (of 8 total)