@HarithaComputersTechnology

SQL Server Interview Challenge Queries Can You Answer These Questions
Join this channel to get access to perks:
https://www.youtube.com/channel/UCVw1BOXs3-hYRhXEYEfTO-w/join

@balajikomma541

Please reply 
I am not able to see the your post in the membership before 12 months  and after 4 months (which is dasara special windows shortcut keys)

Haritha Computers & Technology
11 months ago
Members only
--- 1) Student Management Project (6 tables)
-- Query Get The Age Of The Student Based On The DateOfBirth(yyyy-mm-dd)


select * from student;



SELECT FirstName,DATEDIFF (YEAR, Birthdate, GETDATE()) AS Age

FROM student WHERE StudentID = 5;