concaténation dans SQL
We use "||" to concatenation in Sql
example:
WHERE LOWER(FIRST_NAME || LAST_NAME) LIKE '%d%' ;
Obedient Ocelot
We use "||" to concatenation in Sql
example:
WHERE LOWER(FIRST_NAME || LAST_NAME) LIKE '%d%' ;
select Convert(nvarchar(50),ID)+'-'+Convert(nvarchar(50),Year) as ID_Year from tablename
SELECT CONCAT('Comments: ' , CAST(9 AS varchar(12))) AS Result;