Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Funzioni di stringa T-SQL:differenza tra l'utilizzo di Sinistra/Destra e Sottostringa e comportamenti strani

Hai spazi finali

RIGHT produrrà spazi ma LEN ignora gli spazi finali

DECLARE @foo varchar(100)
SET @foo = 'abc12345def   ' --3 spaces

--right or substring
SELECT RIGHT(@foo, 3)
SELECT SUBSTRING(@foo, LEN(@foo)-2, LEN(@foo))

--demonstrate you get spaces
SELECT REPLACE(RIGHT(@foo, 3), ' ', 'z') --single space

--length differences
SELECT LEN(@foo), DATALENGTH(@foo)

--solution
SELECT RIGHT(RTRIM(@foo), 3)
--or trim your column values before storing

Vedi SET ANSI_PADDING

Nota:non lo farai ottenere NULL per input non NULL...

--only NULL if you send in NULL
SELECT RIGHT(NULL, 3)