开发者

Replace always replacing null values

开发者 https://www.devze.com 2022-12-29 14:42 出处:网络
Why does left(FIELD, replace(nullif(charindex(\'-\', FIELD), 0), null, len(FIELD))) alway开发者_JAVA百科s return null? The idea behind the query is that if charindex() returns 0, then convert the r

Why does

left(FIELD, replace(nullif(charindex('-', FIELD), 0), null, len(FIELD)))

alway开发者_JAVA百科s return null? The idea behind the query is that if charindex() returns 0, then convert the results into null, then convert the null into the length of the field. So if '-' does not exist, show the whole string. For some reason it makes every row equal null.

Thank you.


Because REPLACE() returns NULL if any one of the arguments is NULL. Says so in the docs.

Do this instead:

select isnull(nullif(charindex(' ',field),0),len(field))


So, if field contains "-", show length. If no "-", show field?

CASE
    WHEN FIELD NOT LIKE '%-% THEN FIELD
    ELSE CAST(LEN (FIELD) AS varchar(4))
END

You need the cast to avoid datatype precedence

Flip the condition if you want NULL FIELD to work differently (it will go to the ELSE clause)


When you say then convert the null into the length of the field, do you mean convert Nulls into a series of spaces like so:

Select
    Case
    When Field Like '%-%' Then Replicate(' ', Len(Field))
    Else Field
    End
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号