on 2018 May 17 4:52 PM
I am working on the following SQL:
select a.field1 a.field2 b.field3
(select FIELD from table3 where KEY = a.field1) as field4
from TAB1 a inner join TAB2 b on a.key = b.key.
My requirement is display value of FIELD FROM table3 if there is a entry else 'N/A' in field4. I am trying the following and receiving error "NTO clause not allowed for this SELECT statement: subquery is not allowed here"
Any pointers on how can i achieve this...
select a.field1 a.field2 b.field3
case when (select FIELD into lv_value from TABLE3 where TABLE3.KEY = a.key) is null then 'N/A'
else.
lv_value
end as field4
from TAB1 a inner join TAB2 b on TAB1.KEY = TAB2.KEY.
it looks like you would need to include your table3 as a left join instead of a sub select... then do a case when clause where you have the subquery
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
67 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.