Sure.

Table looks like:

col1 col2 col3 tgot
------ ----- ----- ------------------------
4 a b 2003-04-08 13:08:27.860

View's code:

CREATE VIEW dbo.VIEW1
AS
SELECT col1, CONVERT(varchar(10), dbo.Table1.tgot, 20) AS EXPR1
FROM dbo.Table1
WHERE (col1 = '4')


Result of select from view:

col1 EXPR1
----------- ----------
4 2003-04-08