Viewing 15 posts - 2,296 through 2,310 (of 7,614 total)
SELECT CustID, COALESCE(CASE WHEN ValidLand = 0 THEN NULL ELSE LandPhone END,
CASE WHEN ValidMobile = 0 THEN NULL ELSE MobilePhone END,
CASE WHEN ValidOffice = 0 THEN NULL ELSE OfficePhone END)...
September 12, 2020 at 2:37 am
SELECT CustID, COALESCE(LandPhone, MobilePhone, OfficePhone) AS Phone
FROM PHONENOS
September 11, 2020 at 3:37 am
Such insanely bloated calendar tables have actually become much closer to the norm.
It's terrible. Create a nonwork days table with only the dates in it (you could also add a...
September 11, 2020 at 2:20 am
And, if forced to work on that SQL statement, I'd still remove the use of ISNULL, no matter what the comments stated.
So like I asked before... what would...
September 11, 2020 at 2:15 am
While I usually and strongly agree that ISNULL shouldn't be used on table columns in a Join, Where, or other column based criteria matching, "It Depends" is...
September 10, 2020 at 9:37 pm
While I usually and strongly agree that ISNULL shouldn't be used on table columns in a Join, Where, or other column based criteria matching, "It Depends" is always a...
September 10, 2020 at 8:03 pm
SELECT CONVERT(varchar(10), I.InvoiceDate, 110) AS InvoiceDate
September 9, 2020 at 8:03 pm
Still there is a shorter version:
select *
from leftTable T1
join rightTable T2
on (
T1.C1 =...
September 9, 2020 at 7:42 pm
You never want to use ISNULL() in a WHERE or JOIN clause. The code may be slightly longer the other way, but it could potentially run much faster.
September 9, 2020 at 7:25 pm
ALTER SCHEMA [dbo] TRANSFER HWData.DesktopSoft_Master;
September 8, 2020 at 3:50 pm
Then your original JOIN is fine and likely the cleanest way to do the join.
September 5, 2020 at 5:34 am
So you want a NULL in the column to match *every* column on the other table that isn't NULL? I.e., NULL is like a wildcard match?
September 4, 2020 at 10:31 pm
I would think you'd want this:
T1 join T2
on ((T1.C1 = T2.C1) OR (T1.C1 IS NULL AND T2.C1 IS NULL))
and ((T1.C2 = T2.C2) OR (T1.C2 IS NULL AND T2.C2 IS NULL))
September 4, 2020 at 8:51 pm
How critical is your application?
You will have an outage between steps 2 and 3 and if the table has foreign key constraints you cannot use truncate table
Don't forget to...
September 3, 2020 at 9:14 pm
Viewing 15 posts - 2,296 through 2,310 (of 7,614 total)