Hi All,
This is probably a simple one but I couldn't find what I was looking for in the posts.
I'm making a report using MSSQL reporting services and I'd like to insert a field displaying the current date in a specific format (e.g. August 2, 2004)
I followed some threads here and came up with the following:
SELECT CONVERT(varchar, getdate(), 107) as CurrentDate.
In this case, I get CurrentDate = Jun 25, 2004. Format 107 was the closest thing I could find in books online.
I'd like the month to be full text 'June' and not abbreviated 'Jun'.
Suggestions?
Thanks.
This is probably a simple one but I couldn't find what I was looking for in the posts.
I'm making a report using MSSQL reporting services and I'd like to insert a field displaying the current date in a specific format (e.g. August 2, 2004)
I followed some threads here and came up with the following:
SELECT CONVERT(varchar, getdate(), 107) as CurrentDate.
In this case, I get CurrentDate = Jun 25, 2004. Format 107 was the closest thing I could find in books online.
I'd like the month to be full text 'June' and not abbreviated 'Jun'.
Suggestions?
Thanks.