Hey Guys Thanks for all the answers, I am ending up going with
select blog_id,blog_author, Blog_title,blog_date,
Case When DateDiff(dd, blog_date,GetDate()) < 1 Then 'Today'
When DateDiff(dd, blog_date,GetDate()) = 1 Then 'Yesterday'
When DateDiff(dd, blog_date,GetDate()) = 2 Then...