concat() will take only 2 arguments, concat(city,', ',state) is not working in Oracle. How did you get solution with it please clarify my doubt. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

concat() will take only 2 arguments, concat(city,', ',state) is not working in Oracle. How did you get solution with it please clarify my doubt.

14th Jun 2015, 5:20 PM
gnani
2 Answers
0
With oracle is better use || instead of concat, example: SELECT 'Name is ' || last_name FROM employees;
19th Jun 2015, 9:07 PM
Fabricio García
Fabricio García  - avatar
0
there is no such keyword as concat in Oracle. But you can use '||' as it provide same output as concat.
19th Feb 2016, 12:53 PM
Ambar Dudhane
Ambar Dudhane - avatar