Skip to content
Advertisement

Slow query when using datediff function in Oracle

As my title, I have the following code:

The datediff function make my query run very slow(16s for 11 records), and cost also very high(~43k).

Here is my datediff function code

I used SELECT * because I want to get almost column in Department table, so it no more change if I SELECT some columns which I need.

Can I re-write to improve performance and cost?

Mayny thanks!

Advertisement

Answer

I created a function named datediff as a datediff function in SQL, sir

Don’t use custom functions as they prevent Oracle from using an index on the column; instead just compare the column to the static values:

or

or

Here is my datediff function code

If you want to do an equivalent comparison to using TRUNC to ignore the time components then change from using greater-than comparison to using greater-than-or-equal-to and add one time unit (day in your example) to the expected difference. For example:

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement