I have a query that joins two tables based on column A.
select * from
table a, table b
where table a.column a = table b.column a
Column A in table A has a value of 'SEP A'
Column A in table B has a value of 'SEP_A'
How do I put a decode in the where statement so that it does a correct match. I want the query to know that SEP A in table A is the same as SEP_A in table B.
select * from
table a, table b
where table a.column a = table b.column a
Column A in table A has a value of 'SEP A'
Column A in table B has a value of 'SEP_A'
How do I put a decode in the where statement so that it does a correct match. I want the query to know that SEP A in table A is the same as SEP_A in table B.