Answers for "sql concatenate int"

SQL
1

sql server concat string and int

SELECT 'Comments: ' + CAST(9 AS varchar(12)) AS Result;
Posted by: Guest on April-08-2020
4

concatenation in sql

We use "||" to concatenation in Sql

example:
WHERE LOWER(FIRST_NAME || LAST_NAME)  LIKE '%d%' ;
Posted by: Guest on January-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language