Showing posts with label How to convert date of birth in words in SQL Server?. Show all posts
Showing posts with label How to convert date of birth in words in SQL Server?. Show all posts

How to convert date of birth in words in SQL Server?

Step 1: Below is the query that we can use in order to convert the date into words: declare @date datetime = '01-10-1985'--Input DateOfBirth declare @yr smallint = datepart(year, @date); declare @month smallint= datepart(month, @date); declare @day smallint = datepart(day,

Read More