1.

How To Concatenate Two Character Strings?

Answer»

If you WANT CONCATENATE multiple character strings into one, you NEED to use the CONCAT() function. Here are some good examples:

SELECT CONCAT(’Welcome’,’ to’) FROM DUAL; Welcome to SELECT CONCAT(wj’,’center’,’.COM’) FROM DUAL; wisdomjobs.com

If you want concatenate multiple character strings into one, you need to use the CONCAT() function. Here are some good examples:



Discussion

No Comment Found