Viewing 15 posts - 586 through 600 (of 1,243 total)
smer (9/28/2015)
Help to get the Sql Query e.g when execute on 8/15/2015 get the records from 8/1/2015 to 8/15/2015, if run on 9/20/2015 get the results...
September 28, 2015 at 1:59 am
Thanks for the congratulations everybody. I think the scariest thing about how far I've come in the last two and half years is realising how far I've got to...
September 25, 2015 at 1:15 am
djj (9/24/2015)
Stuart Davies (9/24/2015)
Eirikur Eiriksson (9/23/2015)
SQLRNNR (9/23/2015)
gossipWhisper
Careless
Lawless
Bandit
September 24, 2015 at 5:27 am
SQLRNNR (9/23/2015)
Steve Jones - SSC Editor (9/23/2015)
BWFC (9/23/2015)
Promotion today :w00t: Yay me!!!!Congrats. With a raise?
If no raise, then let them keep the promotion.
Love the promotions where it is only a...
September 24, 2015 at 1:06 am
Promotion today :w00t: Yay me!!!!
September 23, 2015 at 1:54 pm
Guessing that won't work out too well. We all have to keep in mind that those who can't do, teach.
I remember reading an interesting alternative take on that axiom...
September 21, 2015 at 1:28 am
Phil Parkin (9/17/2015)
BWFC (9/17/2015)
Phil Parkin (9/17/2015)
September 17, 2015 at 5:24 am
There is an huge number of people on here that will be able to give you a better answer, in more detail, than I ever could. The long and...
September 17, 2015 at 4:54 am
Phil Parkin (9/17/2015)
September 17, 2015 at 4:36 am
This subject is an odd one for me. I'm happy in my job, the pay is good, the conditions are good but there's not a lot of 'work' to...
September 17, 2015 at 3:45 am
BL0B_EATER (9/17/2015)
Eirikur Eiriksson (9/17/2015)
anthony.green (9/17/2015)
Eirikur Eiriksson (9/16/2015)
Revenant (9/16/2015)
Ed Wagner (9/16/2015)
SQLRNNR (9/16/2015)
venomSnake
Eden
Utopia
Dystopia
Inferno
Heat
Hot
September 17, 2015 at 3:17 am
CREATE TABLE #weekdays
(
datevalue datetime NOT NULL
, numericvalue INT NOT NULL
);
INSERT INTO #weekdays (datevalue, numericvalue) VALUES
('2015-09-01', 1000),
('2015-09-02', 1001),
('2015-09-07', 1003),
('2015-09-08', 1004),
('2015-09-12', 1005),
('2015-09-13', 1006),
('2015-09-14', 1007),
('2015-09-19', 1008)
select
case DATEPART(dw,datevalue)
when 7 then DATEPART(wk,datevalue) +1...
September 17, 2015 at 2:57 am
kbab95 (9/17/2015)
I am trying to get the maximum for stores where there exists more than one in the same region (e.g. top sales).
I want to leave the ones where there...
September 17, 2015 at 1:39 am
whereisSQL? (9/15/2015)
Ray K (9/15/2015)
Ed Wagner (9/15/2015)
Eirikur Eiriksson (9/15/2015)
djj (9/15/2015)
Ed Wagner (9/15/2015)
anthony.green (9/15/2015)
Ed Wagner (9/14/2015)
InspireEureka
Vacuum
tube
Commute
Traffic
Jam
Jelly
Roll
September 15, 2015 at 7:36 am
Please tell me it's not just me who saw the title of today's editorial and immediately replied mentally with 'yes, you're a good developer.'
Must.Grow.Up
September 15, 2015 at 2:38 am
Viewing 15 posts - 586 through 600 (of 1,243 total)