Browse MS SQL Server Content
autonumber datatype
By: Mark Kiehl
To create an autonumber datatype, make your field a type INT, and then in the column properties, revised the Identity ..
Datetime type to simple date using DATENAME and concatenation
By: Mark Kiehl
SELECT DATENAME(dd,design_reviews.date)+' '+LEFT(DATENAME(month,design_reviews.date),3)+' '+DATENAME(yy,design_reviews...
