About 108,000 results
Open links in new tab
  1. How do I calculate someone's age based on a DateTime type …

    Jul 3, 2015 · Given a DateTime representing a person's birthday, how do I calculate their age in years?

  2. How to get an age from a D.O.B field in MySQL? - Stack Overflow

    I need to calculate the age of a "customer" from their date of birth. I have tried to use the following: DATEDIFF(year, customer.dob, "2010-01-01"); But it does not seem to work. Any …

  3. sql - Calculate age in MySQL (InnoDB) - Stack Overflow

    103 If I have a person's date of birth stored in a table in the form dd-mm-yyyy, and I subtract it from the current date, what format is the date returned in? How can I use this returned format …

  4. Pandas get the age from a date (example: date of birth)

    29 How can I calculate the age of a person (based off the dob column) and add a column to the dataframe with the new value? dataframe looks like the following:

  5. How to calculate age (in years) based on Date of Birth and getDate()

    Oct 15, 2009 · I have a table listing people along with their date of birth (currently a nvarchar(25)) How can I convert that to a date, and then calculate their age in years? My data looks as …

  6. javascript - Age calculation - Stack Overflow

    Having 2 javascript Dates, first is birthdate and second is a date to calculate age from that date. What should be the best way to do this.

  7. PostgreSQL Age Calculation from date type - Stack Overflow

    There is an age function which is used to calculate age by passing the parameter. select employee_id, name, age (date_of_birth) from employees.

  8. Oracle Age calculation from Date of birth and Today

    May 2, 2016 · I want to calculate the current Age from Date of Birth in my Oracle function. What I am using is (Today-Dob)/30/12, but this is not accurate as some months have 31 days. I need …

  9. calculator - Calculating age in python - Stack Overflow

    I am attempting to create some code where the user is asked for their date of birth and today's date in order to determine their age. What I have written so far is: print("Your date of …

  10. How to calculate age in T-SQL with years, months, and days

    57 What would be the best way to calculate someone's age in years, months, and days in T-SQL (SQL Server 2000)? The datediff function doesn't handle year boundaries well, plus getting the …