create table emp (b_date date,j_date date);
insert into emp values('2000-08-30','2015-09-06');
insert into emp values('2003-03-17','2019-07-11');
select*from emp;
select Datediff(b_date, j_date) as 'age' from emp;

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: