Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
288 views
in Technique[技术] by (71.8m points)

sql - How to fetch records from DB2 for the last 7 days (1 WEEK) from today

I am using DB2. I want to fetch records for this week from a column. I want to use similar to below (This is for SQL 2005)

Select count(*) from Applications WHERE ReceivedDate is this week. (Last 7 days including today)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try a WHERE clause like this:

WHERE ReceivedDate > current date - 7 days

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...