Assuming that the column holding your dates is a datetime datatype, you can convert it to a string and use a style parameter.
SELECT CONVERT(CHAR(8), myDateColumn, 112) FROM ....
..will probably do the trick.
Also, you can read more about display styles for dates under the subject CONVERT in BOL.
/Kenneth