Skip to content
Advertisement

Column Concatenation in Oracle [closed]

I’m trying to Concatenate these three columns into one but having the error, any help?

[Error] : Execution (14: 74): ORA-00936: missing expression

Advertisement

Answer

but i want to concatenate those columns in termination_call_dtls!!

The problem, as @APC mentioned, is that you’re trying to alias the WITH block. It isn’t clear that you need subquery factoring at all here; you can just do:

with termination_call_dtls as a column alias on the first line.

As also mentioned in comments you should consider using modern join syntax instead of the old and Oracle-only syntax you have now; and the subquery might be better as another join, something like:

Either way you can still use the query as a CTE if you need to – if it’s part of a larger and more complicated query than you showed.

It isn’t clear why you have the (outer) joins to csf_ct_task_assignments or csf_debrief_headers, since you don’t use any columns from those tables anyway. Those joins can probably just be removed.

You should also be aware that and rownum = 1 is going to give you an indeterminate row back, assuming you get multiple rows without it. Normally you would have an inline view that includes an order by clause, and then apply the rownum filter afterwards to limit the results, e.g. (guessing that you want the earliest creation date):

From 12c there are other mechanisms to simplify that a bit. Or using aggregation:

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement