Viewing 5 posts - 1 through 5 (of 5 total)
But how do you know if your code is right or wrong when the examples to learn from don't scale or are not complete? Most articles I find on writing...
November 16, 2017 at 7:19 am
AH nevermind. It looks like it is just the Logical Name that has PROD in it. The actual filename has TEST. That is very confusing when you first look at...
May 8, 2017 at 10:09 am
I would turn it into a column and order by it. Cleaner this way.
SELECT
(CASE WHEN AddDt > UpdateDt
THEN AddDt
ELSE ISNULL(UpdateDt, AddDt)
END) AS MaxDt,
Id, Name, OnHand, AddDt,...
April 29, 2016 at 7:20 am
I ran this and got the below error.
The base type "email" is not a valid base type for the alias data type.
Never had a reason personally to create types, but...
November 24, 2015 at 7:39 am
Viewing 5 posts - 1 through 5 (of 5 total)