T-SQL Equivalent of VBScript's FormatDateTime Function

Looking for the T-SQL (somewhat) equivalent to VBScript's FormatDateTime function? I've been too, for years. I finally found it within the CONVERT() function. As stated in SQL Server Books Online:

In CONVERT ( data_type [ ( length ) ] , expression [ , style ] ), style is the style of the date format used to convert datetime or smalldatetime data to character data (nchar, nvarchar, char, varchar, nchar, or nvarchar data types); or the string format used to convert float, real, money, or smallmoney data to character data (nchar, nvarchar, char, varchar, nchar, or nvarchar data types). When style is NULL, the result returned is also NULL.

Manuj Bahl wrote a nice article covering date and time manipulation in SQL Server 2000 and it in, he summarized BOL's table that lists the different style types. It went something like this:

Style IDStyle Type
0 or 100mon dd yyyy hh:miam (or pm)
101mm/dd/yy
102yy.mm.dd
103dd/mm/yy
104dd.mm.yy
105dd-mm-yy
106dd mon yy
107mon dd, yy
108hh:mm:ss
9 or 109mon dd yyyy hh:mi:ss:mmmam (or pm)
110mm-dd-yy
111yy/mm/dd
112yymmdd
13 or 113dd mon yyyy hh:mm:ss:mmm(24h)
114hh:mi:ss:mmm(24h)
20 or 120yyyy-mm-dd hh:mi:ss(24h)
21 or 121yyyy-mm-dd hh:mi:ss.mmm(24h)
126yyyy-mm-dd thh:mm:ss.mmm(no spaces)
130dd mon yyyy hh:mi:ss:mmmam
131dd/mm/yy hh:mi:ss:mmmam

Try this out with GETDATE() by running the following statement: SELECT CONVERT(VARCHAR,GETDATE(),7) AS currentdate

Your results should look something like this: Jul 03, 07 Nice! Have fun :)