Results 1 to 4 of 4

Thread: What is query to find-out age using birthdate?

  1. #1
    Join Date
    Nov 2009
    Posts
    53

    What is query to find-out age using birthdate?

    Hi All,

    I have to write the query in the SQL which will find the age of the person when we provide only birth date.

    If anybody knows the query to find out the age using birth date then please let me know.

    Your help will be greatly appreciated..

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Re: What is query to find-out age using birthdate?

    HI friend ,

    I have a query which can find-out the age of using birth date which is as follows:

    SELECT (SYSDATE-BIRTH_DATE)/365 "YEAR"
    FROM nameOFtable
    Please try this and let me know.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Re: What is query to find-out age using birthdate?

    Hi,

    Please try to execute below query:


    SELECT TRUNCATE(monthsBetween (Date_of_birth,sysdate)/12(Total month of the year))

    FROM

    ageTable;

  4. #4
    Join Date
    Oct 2005
    Posts
    2,393

    Re: What is query to find-out age using birthdate?

    Below query is running successfully on my system. Please copy below query and try to run on your system:

    select trunc((number(to_char(systemdate,'YYYYMMDD'))
    number(char(date '2009-10-24','YYYYMMDD'))
    )/10000)
    AS Person_age

    from personTable

Similar Threads

  1. Want to make query dependent on another query.
    By MACE in forum Software Development
    Replies: 4
    Last Post: 01-02-2010, 05:22 PM
  2. Query to find out duplicate records
    By Shophia_D in forum Software Development
    Replies: 5
    Last Post: 22-12-2009, 11:03 AM
  3. Make a query to find duplicates
    By ASHER in forum Software Development
    Replies: 4
    Last Post: 04-12-2009, 04:47 PM
  4. Turn on MySQL query cache to speed up query performance
    By DMA2Superman in forum Software Development
    Replies: 3
    Last Post: 07-07-2009, 10:26 AM
  5. SQL find and replace query
    By Seraphim in forum Software Development
    Replies: 3
    Last Post: 26-05-2009, 01:40 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,282,944.32564 seconds with 17 queries