You have two options for concatenating strings and column values in Oracle:
CONCAT
Using ||
CONCAT example:
select CONCAT(ROW_ID,'text') from s_contact;
You have two options for concatenating strings and column values in Oracle:
CONCAT
Using ||
CONCAT example:
select CONCAT(ROW_ID,'text') from s_contact;
Comments
Post a Comment