Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

I am trying to get all the applications which was updated before 5 business day

I am able to to get all the applications by using the following where clause calculation.

Also, I would like to display the number of day it was last updated.

SELECT A.APP_NUM
FROM Application A,

WHERE
((Dayofyear(CURRENT_DATE) - Dayofyear(cast (A.LAST_UPDATE_TIMESTAMP as DATE))) + 1) - ((Week(CURRENT_DATE) - Week(cast (LAST_UPDATE_TIMESTAMP as DATE))) * 2) - (case when DAYOFWEEK(CURRENT_DATE) > 6 then 1 else 0 end) - (case when DAYOFWEEK(cast (LAST_UPDATE_TIMESTAMP as DATE)) < 2 then 1 else 0 end) >5

asked 04 Mar '14, 11:32

gag's gravatar image

gag
0111
accept rate: 0%

1

This forum is about SAP SQL Anywhere not MySQL - you will probably do better on Stack Overflow or a dedicated MySQL forum.

(05 Mar '14, 05:37) Justin Willey
Be the first one to answer this question!
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×16
×9

question asked: 04 Mar '14, 11:32

question was seen: 9,356 times

last updated: 05 Mar '14, 05:37