So I have a query that displays the name of the day of the week and the wine that went with that day. The problem I have is that I only want to display data from Tuesday. How would I go about doing that?
select to_char(res_date, 'DAY'), wine from DSS_TEST;