I ran the below two simple SQL queries in management studio
SELECT getdate() -- returned 2008-06-26 23:11:44.030
PRINT getdate() --returned Jun 26 2008 11:12PM
now I wanted to know why there is a difference in the format returned by SELECT and PRINT statements
thanks