Question

I'm not too familiar with the types of operations possible on SQL queries.

There's a line in the query that returns a value:

    trunc(sysdate) - trunc(\"DATE\") AS days_ago

I'm wondering if there's any way to have the query avoid returning any rows where 'days_ago' is greater than 365?

Thanks.

Était-ce utile?

La solution

You should add this to your query:

WHERE (trunc(sysdate) - trunc(\"DATE\"))<=365;

Autres conseils

Is there any reason adding this to the WHERE clause won't work:

WHERE (trunc(sysdate) - trunc(\"DATE\")) <= 365

?

You could also set a variable equal to trunc(sysdate) - trunc(\"DATE\") and perform your WHERE condition against that variable

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top