+1 vote
in Class 12 by kratos

Explain concat function.

1 Answer

+2 votes
by kratos
 
Best answer

The CONCAT function can have any number of arguments and it returns a string that is the result of concatenating the arguments.

Ex. > SELECT CONCAT ('I', 'Iove','MySQL')

I Love MySQL

SELECT CONCAT ('I', 'NULL, 'MySQL') NULL

...