Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i would like to calculate the age of users from a column (YOB) which contain only the year of birthday ? i've tried that but it doesnt work :

WITH X AS (SELECT EXTRACT(YEAR FROM CURRENT_DATE) AS YEAR) SELECT X - YOB from dataset.table;

Could you help please ?

Thanks!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Try DATE_DIFF.

If YOB is an integer:

WITH test_data AS (
  SELECT 1999 AS YOB UNION ALL
  SELECT 2005 UNION ALL
  SELECT 2019
)
SELECT YOB, DATE_DIFF(CURRENT_DATE(), DATE(YOB, 1, 1), YEAR) AS age
FROM test_data

enter image description here

If YOB is a string:

WITH test_data AS (
  SELECT '1999' AS YOB UNION ALL
  SELECT '2005' UNION ALL
  SELECT '2019'
)
SELECT YOB, DATE_DIFF(CURRENT_DATE(), PARSE_DATE("%Y", YOB), YEAR) AS age
FROM test_data

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
...