Viewing 15 posts - 481 through 495 (of 1,391 total)
Maybe a good way could be an UPDATE statement
update t
set flag = case when v.row_count=1 then 'ANY_EMPTY'
...
December 14, 2021 at 6:44 pm
In the situation where Sum([QTY]) returns the correct the number, AVG(OH) or MAX(OH) ought to return only 1 SKU
December 12, 2021 at 4:59 pm
At a minimum it's missing a comma at the end of the first line. Is it necessary to nest SELECT statements within the SELECT list as you've done? It seems...
December 11, 2021 at 2:52 pm
Yup, I was one of the 'most people' crowd, thanks for alerting me to that, Jeff. Always good to be aware of these extra possibilities. It was also only...
December 9, 2021 at 2:52 pm
Now, if they'd just add a machine language sequence generator to replace fnTally, create a BULK EXPORT, and create a truly useful xp_Dir...
The DIY way could be to...
December 9, 2021 at 2:37 pm
Concat_ws was originally in MySQL then the other db's borrowed it iirc. The big news for me is .NET 6 which I'm really liking a lot because it nicely untangles...
December 9, 2021 at 1:29 pm
CONCAT_WS() "concat with separator" ignores the nulls
select concat_ws(' | ', t.Col1, t.Col2, t.Col3) [output]
from #t t;
December 8, 2021 at 3:19 pm
The date could be converted without using string functions. Also, the WHERE clause might be a more appropriate place to filter the rows. Maybe something this
declare @UPSBatchInvNot...
November 26, 2021 at 5:49 pm
Why would you want to avoid JOIN? Maybe use IN but there's no benefit afaik and it might actually be slower
select partc
from #partsc
where VerificationHash in(select VerificationHash
...
November 25, 2021 at 2:06 pm
What is the primary key of the target table? With Scenario4 you're inserting a new row which would duplicate (or more?) the TaskId. Once the TaskId is non-unique then further...
November 25, 2021 at 1:40 pm
So a billion flies cannot be wrong? Imo attempting to derive wisdom from overdefined equations could turn out to be counterproductive
Not sure what you mean here. If you're...
November 24, 2021 at 5:21 pm
So a billion flies cannot be wrong? Imo attempting to derive wisdom from overdefined equations could turn out to be counterproductive
November 24, 2021 at 2:14 pm
The "solution" is the following:
i had another talk with the user, we discussed the relevancy of the individual columns
November 23, 2021 at 4:31 pm
From a design perspective why does the table need to know all the information about how characters are extracted from another column? It seems like whatever is inserting the row...
November 23, 2021 at 4:15 pm
drop table if exists Report_Es;
go
create table Report_Es(
ola1 int,
ola2 int,
ola3 ...
November 19, 2021 at 3:43 pm
Viewing 15 posts - 481 through 495 (of 1,391 total)