Columns Concatenation
The CONCAT()
function accepts, only, two arguments whose data types can by any of the data types CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, or NCLOB. However, the concatenation operator allows concatenating more than two strings in a more readable statement. So, I'm using the operator only on this page :-)
String ||
String ||
String
Examples:
Column name ||
Column name
"Bibliographic Details"."Publication Place" || ' ' || "Bibliographic Details"."Publisher" || ', ' || "Bibliographic Details"."Publication Date"
Results:
Albany, N.Y. : Denver, Colo. : Books and Open-File Reports distributor; Dept of the Interior US Geological Survey, 1988. |
Albany, N.Y. : State University of New York Press, c1997. |
Albany, N.Y. : University of the State of New York State Education Dept Bureau of Curriculum Development, 1985. |
Example of simple SQL statement:
"Bibliographic Details"."Publication Place" || ' ' || "Bibliographic Details"."Publisher" || ', ' || "Bibliographic Details"."Publication Date" saw_0
FROM "Physical Items"
WHERE
"Item Creation Date"."Item Creation Year" > '2020'
0 Comments.