How To Concatenate Two Text Values in Oracle?
Submitted by: AdministratorThere are two ways to concatenate two text values together:
* CONCAT() function.
* '||' operation.
Here is some examples on how to use them:
SELECT 'ggl' || 'Center' || '.com' FROM DUAL;
globalguideline.com
SELECT CONCAT('globalguideline','.com') FROM DUAL;
globalguideline.com
Submitted by: Administrator
* CONCAT() function.
* '||' operation.
Here is some examples on how to use them:
SELECT 'ggl' || 'Center' || '.com' FROM DUAL;
globalguideline.com
SELECT CONCAT('globalguideline','.com') FROM DUAL;
globalguideline.com
Submitted by: Administrator
Read Online Oracle Database Job Interview Questions And Answers
Top Oracle Database Questions
☺ | How To Write Date and Time Interval Literals in Oracle? |
☺ | How To View the Dropped Tables in Your Recycle Bin? |
☺ | How Run SQL*Plus Commands That Are Stored in a Local File? |
☺ | How To Run SQL*Plus Commands in SQL Developer? |
☺ | How To Use IN Conditions in Oracle? |
Top DB Oracle Categories
☺ | Oracle PL-SQL Interview Questions. |
☺ | Oracle DBA Interview Questions. |
☺ | Oracle D2K Interview Questions. |
☺ | OCI Interview Questions. |
☺ | Oracle RMAN Interview Questions. |