0
votes

In my following query :

select * from TABLE1 where 
to_char( created_date, 'Month' )  = (select quarter_month from TABLE2 where quarter_name = 'Q2')

I need to fetch all the records from table1 which falls under the months of Q2,

But the above query is giving me ORA-01427: single-row subquery returns more than one row.

How do i fetch the required result?

1

1 Answers

1
votes

Use in:

select *
from TABLE1 
where to_char(created_date, 'Month') in (select quarter_month
                                         from TABLE2
                                         where quarter_name = 'Q2'
                                        );