Viewing 15 posts - 271 through 285 (of 466 total)
Ya, he wasn't the only one last week. Hopefully this doesn't turn into 3 of us playing against teams with only 4 guys starting every week. :ermm:
October 3, 2012 at 10:19 am
Not sure if it's more elegant or not, and it does tecnically use 2 selects, but you could use a subquery.
select case when result.max_rank = t.ranking then 'top' else 'bottom'...
September 27, 2012 at 3:44 pm
Don't forget about the Thursday night game tonight (now with real refs!). Also Pittsburgh and Indianapolis are off this week so get those guys on your bench so you...
September 27, 2012 at 11:08 am
Steve Jones - SSC Editor (9/24/2012)
I hate wide receivers.
I was a fan of yours this week. 😀 I was a little worried after the morning games when I...
September 24, 2012 at 4:19 pm
Well, it looks like there is only going to be one undefeated team in the league once Week 3 is over. And perhaps only one winless team as well....
September 24, 2012 at 2:08 pm
Steve Jones - SSC Editor (9/21/2012)
Can someone let me know when Steve Smith is planning on showing up this year? I'll add him back to me line up then.
He's (or...
September 21, 2012 at 8:22 am
Just a friendly reminder if you have any New York Football Giants or Carolina Panthers on your team that you want (or don't) to play for you this weekend, get...
September 20, 2012 at 8:57 am
Ray K (9/18/2012)
roryp 96873 (9/18/2012)
Ray K (9/18/2012)
September 18, 2012 at 2:53 pm
Ray K (9/18/2012)
In my office league team, both of my RB's (Ahmed Bradshaw and Steve Jackson) left their games with injuries. They combined for a total of six points!!!@#$%^&*!!!!!!!
Although...
September 18, 2012 at 2:44 pm
JC-3113 (9/18/2012)
I had to modify the code as it does not like '-' in the database name so i bracketed them. I also concatenated the database name...
September 18, 2012 at 11:17 am
SequelSurfer (9/17/2012)
SequelSurfer (9/17/2012)
Steve Jones - SSC Editor (9/17/2012)
roryp 96873 (9/17/2012)
September 18, 2012 at 8:02 am
I wouldn't mind Matt Ryan throwing about 4 touchdowns to Tony Gonzalez. 😀
September 17, 2012 at 1:04 pm
adonetok (9/17/2012)
In ORDER1ORDERID---DATE
111---------2/5/2012
222---------3/8/2012
333---------8/5/2012
In ORDER2
ORDERID---CITY
111----------LONDON
333----------NEW YORK
444----------PARIS
FINAL:
ORDERID---DATE------CITY
111---------2/5/2012--LONDON
222---------3/8/2012
333---------8/5/2012--NEW YORK
444---------------------PARIS
A full outer join might be what you are looking for
select isnull(o1.orderid, o2.orderid) orderid, o1.[date], o2.city
from order1 o1
full outer join order2 o2 on...
September 17, 2012 at 11:55 am
You can generate the SQL to look for the index you have in each of your databases by using something like this:
select 'select *
from ' + name + '.sys.indexes i
where...
September 17, 2012 at 11:32 am
Viewing 15 posts - 271 through 285 (of 466 total)