you should be trying to do this at front end as applying convert will make date fields come as varchar which can affect results later if you're doing some further manipulations with date like sorting etc
If you really want to do this in t-sql, use
Select FN, LN, convert(varchar(11),DateApplied,101) as ApplicationDate from MyTable
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/