Oracle - Query IW week number from Sunday till Saturday
Hi, I have below query where i pull data based on the Iso week number.
My problem is that a week starts on Monday till Sunday when i would like to pull from Sunday till Saturday.
How can i update my below query to do so?
Thanks for your help
SELECT User, crtd_dtt FROM User_Table WHERE (to_number(to_char( updt_dtt, 'iW')) = '16' and to_char(crtd_dtt, 'YYYY') = to_char(sysdate, 'YYYY') order by User ;