Viewing 15 posts - 1 through 15 (of 20 total)
Well I don't know, but I'm putting it on my resume right quick.
June 1, 2016 at 2:20 pm
Ouch. I saw the other post first (which has some good replies), and replied there. Anyway, the title of the other post suggest that the poster wants the query to...
July 9, 2014 at 9:09 am
Looking at the title (not the text) of the original post gives a clue. "Trying to get null values" sounds like they want to retrieve rows with NULL dates as...
July 9, 2014 at 8:55 am
create table #member (A char(10), B char(10), C char(10), D char(10))
insert #member (A, B, C, D)
values ('apple', 'bread', 'carrot', 'chocolate'),
('Mango', 'Begal', 'Onion', 'Candy')
create table #Util (A char(10), B char(10), C...
March 28, 2013 at 9:15 am
That's the right way to begin, I think. Setting the TransactionOption to Required on the container will cause the container to start a transaction. Now you should set TransactionOption to...
February 21, 2013 at 9:14 am
My date column is called periodbegin. The derived column is like this:
YEAR(PeriodBegin) * 100 + MONTH(PeriodBegin)
September 7, 2012 at 9:26 am
I took a three-day remote instructor-led course from New Horizons and thought it was pretty good:
January 4, 2012 at 7:16 am
November 15, 2011 at 11:31 am
So I've got three points per dollar for the last $500 of product "D." What happens if I now return "A" "B" and "C?" Does my score for product "D"...
November 15, 2011 at 10:10 am
I guess I haven't learned how to separate my comment from the piece I was responding to. The first line only was from the original poster.
I suspect there may be...
November 1, 2011 at 12:30 pm
I would like to do the same for division so for 01/01/2011 00:00 my calculation should be 2 / 4 / 6
You must have some kind of sequencer, right? That...
November 1, 2011 at 12:02 pm
It’s fairly common to have a Primary Key and a Foreign Key on the same column, when the Foreign Key points to a different table. Example: a company where...
May 4, 2011 at 2:53 pm
Ichiyo85, on the 12th you said:
"Also,
SELECT *
FROM table1 t1
LEFT JOIN table2 t2
ON t2.ID1 = t1.ID1
OR t2.ID1 = t1.ID2
OR t2.ID2 = t1.ID1
OR t2.ID2 = t1.ID2
WHERE t1.ID1...
April 15, 2011 at 11:37 am
Let me get this straight - if ID1 is not 'Unassigned' then you want to use it for the join, but if ID1 is 'Unassigned,' then you want to...
April 13, 2011 at 1:10 pm
Viewing 15 posts - 1 through 15 (of 20 total)