You should have posted this to the Oracle forum, as this is not ANSI SQL.
You can use Oracle's built-in "Quarter" Calculation for this:
Code:
SELECT *
FROM your_table
WHERE extract(year from sysdate) = extract(year from your_date_column)
AND to_char(sysdate, 'Q') = to_char(your_date_column, 'Q')