We're Moving!

The Vertica Forum is moving to a new OpenText Analytics Database (Vertica) Community.

Join us there to post discussion topics, learn about

product releases, share tips, access the blog, and much more.

Create My New Community Account Now


How old am I? — Vertica Forum

How old am I?

Jim Knicely authored this tip.

The AGE_IN_YEARS function returns the difference in years between two dates, expressed as an integer. This function is very useful when I forget how old I am or how old my wife is being that today is my wife’s birthday.

Example:

dbadmin=> SELECT extract(year from sysdate) "Current Year", age_in_years('04/05/1987') "How young does my wife think she is?";
 Current Year | How young does my wife think she is?
--------------+--------------------------------------
         2018 |                                   30
(1 row)

Have Fun!

Sign In or Register to comment.