Back

Explore Courses Blog Tutorials Interview Questions
0 votes
4 views
in SQL by (55.6k points)

Can anyone tell me how to concatenate two strings in SQL?

1 Answer

0 votes
by (119k points)

We can use CONCAT() function to concatenate two or more strings in SQL. Here is the syntax to use CONCAT() function for combing two or more strings:

CONCAT( String_1, String_2, String_3,……)

Here is an example to concatenate two strings in SQL:

SELECT CONCAT ( ‘SQL’, ‘Tutorial);

To learn string functions in SQL, you should sign up for this SQL training course by Intellipaat.

Related questions

0 votes
1 answer
0 votes
1 answer
asked May 6, 2020 in SQL by Sudhir_1997 (55.6k points)
0 votes
1 answer
asked Oct 7, 2019 in SQL by Tech4ever (20.3k points)

Browse Categories

...