I have a query in the postgres : select date_part('week', CURRENT_DATE) The outcome of this query is 36.
I need to convert the same postgres query into Oracle . How do I do this ? I tried the below query but I am getting an outcome as 5. select to_number(to_char(CURRENT_DATE,'Week'))FROM DUAL