Viewing 15 posts - 7,621 through 7,635 (of 18,926 total)
Daniel Bowlin (10/19/2010)
one lesson I have learned...Don't Change ANYTHING on Friday! Just answer easy questions on SQL Server Central
I've known some people that have tried to make this don't...
October 19, 2010 at 1:24 pm
Bill_CCAC (10/19/2010)
I had been trying to use the case statement but ran into problems and didn't get the results I was after....
October 19, 2010 at 12:11 pm
As it's been pointed out you can do a single query and add an age group. From there pivot the data in the reporting application.
That'll take out 99% of...
October 19, 2010 at 11:17 am
This may help a little bit to decipher the code.
DECLARE @Start_Date As Datetime
DECLARE @End_Date As Datetime
SET @Start_Date = '04/01/2010'
SET @End_Date = '07/01/2010'
SELECT
'1to18' AS 'AgeGroup'
,...
October 19, 2010 at 11:14 am
Gary Varga (10/19/2010)
Ninja's_RGR'us (10/18/2010)
Matt Miller (#4) (10/18/2010)
Ninja's_RGR'us (10/18/2010)
October 19, 2010 at 4:14 am
Matt Miller (#4) (10/18/2010)
Ninja's_RGR'us (10/18/2010)
October 18, 2010 at 6:15 pm
And yes for all of you wondering, I'm available for work as of pretty much now.
Resume :
I know a little bit a SQL :w00t:.
SQL 7, 2000, 2005, 2008
Access, Office,...
October 18, 2010 at 12:42 pm
Ninja's_RGR'us (10/18/2010)
GSquared (10/18/2010)
Ninja's_RGR'us (10/18/2010)
mike.hartman (10/18/2010)
October 18, 2010 at 12:36 pm
GSquared (10/18/2010)
Ninja's_RGR'us (10/18/2010)
mike.hartman (10/18/2010)
October 18, 2010 at 12:35 pm
mike.hartman (10/18/2010)
October 18, 2010 at 12:16 pm
GSquared (10/18/2010)
Games have a goal (or multiple goals),...
October 18, 2010 at 11:44 am
How about using ROW_NUMBER(PARTITION BY Member_ID, ORDER BY EndDate)
Then self join on ROWNumber = Rownumber + 1 and member_id= member_id
where dateadd(D, 30, tbl1.enddate) <= tbl2.stardate
I'm sure you'll figure out the...
October 17, 2010 at 6:32 pm
LutzM (10/15/2010)
WayneS (10/15/2010)
Michael Valentine Jones (10/15/2010)
Do tables that reference table konten have indexes on their foreign key columns?
Specifically, Do ALL tables that reference table konten have indexes on their foreign...
October 16, 2010 at 1:03 pm
vky3 (10/15/2010)
October 15, 2010 at 9:39 am
Grant Fritchey (10/15/2010)
October 15, 2010 at 7:00 am
Viewing 15 posts - 7,621 through 7,635 (of 18,926 total)