I'm applying a SQL
q query on Oracle SQL Developer in multiple tables where Column
of a view is null in some places and then I'll need to use values of Column
and not% I know how to use the query IF very well. Home
Can anyone help with some possible solutions?
E.g.
SELECT x.Column1 "Alias",
y.Column2 "Alias2",
FROM table x
INNER JOIN table y
ON (IF x.Column3 or x.Column4) = y.Column2
.
.
.