+ 1
Concatenation
Why are there 3 commas and a pair of quotation marks?
1 Resposta
0
SQL CONCAT function is used to concatenate two strings to form a single string. .
SELECT CONCAT('FIRST ', 'SECOND');
Output - FIRST SECOND
Why are there 3 commas and a pair of quotation marks?