我想在每一行顯示date_added等於'2015-02-18'和每隔7天后'so'2015-02-25 「和‘2015年3月4日’等。如何顯示日期等於特定日期每7天的行數
這裏是我迄今爲止
select * from table
where ((to_char(date_added, 'j'))/
((select to_char(d,'j') from (select date '2015-02-18' d from dual)))) = 1
這讓我第一所期望的日期,但是我堅持爲如何表達它顯示接下來的7天作爲一步添加功能。
任何幫助表示讚賞。謝謝。要做到這一點