I simply need to turn a date field into the full month name and the day of the month only. No year. So, if we were using getdate() for this if I just did this:
select getdate()
I would get this returned; 2010-07-29 17:25:13.110
However, I need to convert that to this only; "July 29"
How can I do this?
select convert(varchar,convert(datetime,getdate()),100) gets me close withi Jul 29 2010 5:25PM but that's not what I need. Can anyone please help?
Thanks for looking!