Viewing 15 posts - 6,361 through 6,375 (of 10,144 total)
Hi Paul
Can you post a little sample data please? I'm sure this can be done more efficiently.
April 26, 2012 at 6:42 am
Eugene Elutin (4/26/2012)
SELECT t.ApprovalID
,u.UserName ...
April 26, 2012 at 6:30 am
oolawole (4/25/2012)
Sorry, that does not give the desired output.
Why not post the desired output. All of it, from your sample data set.
April 25, 2012 at 7:10 am
oolawole (4/25/2012)
For each of the resp_Id, i want a count on each brand (that the resp_Id has) in this...
April 25, 2012 at 6:58 am
Ask yourself how you would cope, as a professional SQL Server developer, if you were given the content of your first post as a job specification.
It's awful.
What you...
April 20, 2012 at 4:23 am
SQL_Surfer (4/4/2012)
I have a comma seperated list of strings like 'abc, efg, ijk, lmn'. ...
In a column of a SQL Server table? Have you tried LIKE()?
April 4, 2012 at 7:02 am
anthony.green (4/3/2012)
4DayWeek 😀
FollowedByAnother :-))
April 3, 2012 at 6:36 am
What column from which table are you trying to evaluate MAX() of?
Currently you have a "circular" evaluation - the MAX() of something which is never assigned a value.
March 26, 2012 at 6:50 am
Lisa Slater Nicholls (3/23/2012)
Hi Jeff, I'll have to look into it at home - this gig is 2k5 only 🙁
I did a lot of work on exactly this subject, attempting...
March 23, 2012 at 8:03 am
EasyBoy (3/23/2012)
There are total 5 queries with 5 temp tables. I need to make it simple using just one...
March 23, 2012 at 7:45 am
Jeff Moden (3/22/2012)
ChrisM@Work (3/19/2012)
SELECT n = (n1 + n2 + n3 + n4)
FROM (((VALUES (0),(100),(200),(300),(400),(500),(600),(700),(800),(900)) t3 (n3)
CROSS JOIN (VALUES...
March 23, 2012 at 5:45 am
This is pretty fast too:
SELECT n = (n1 + n2 + n3 + n4)
FROM (((VALUES (0),(100),(200),(300),(400),(500),(600),(700),(800),(900)) t3 (n3)
CROSS JOIN (VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) t1 (n1))
CROSS...
March 19, 2012 at 7:25 am
Jonathan AC Roberts (3/13/2012)
DECLARE @StartTime datetime
DECLARE @x int
DECLARE @y varchar(20)
DECLARE @MaxIterations int
SET @MaxIterations = 10000
SET @StartTime = GETDATE()
DECLARE @i int
SET @i =...
March 13, 2012 at 10:43 am
andrew.diniz (3/13/2012)
March 13, 2012 at 7:05 am
Viewing 15 posts - 6,361 through 6,375 (of 10,144 total)