You need to use th CONVERT function.
To select Date in mm/dd/yyyy format use style 101:
Select convert(char(10), dateval, 101) As DateOnly
To select Time only in hh:mm:ss format use style 8 or 108:
Select convert(char(8), dateval, 8) As TimeOnly
For more information on date/time styles see "Cast and Convert" in SQL Books Online. Terry L. Broadbent
faq183-874 contains some tips and ideas for posting questions in these forums. Please review it if you have time.