Wednesday, March 16, 2005
SQL SERVER 2000 online Forum
I have learned a lot using online discussion forums. Here is the one that I use explicitly
1) http://www.windowsitpro.com/sqlserver/forums/index.cfm
This is SQL SERVER Magazine forum.
1) http://www.windowsitpro.com/sqlserver/forums/index.cfm
This is SQL SERVER Magazine forum.
Thursday, February 24, 2005
Separating day.month and year
This is a simple query that separates day,month and year.
SELECT DATEPART(day,GETDATE()) AS Day ,DATEPART(month, GETDATE()) AS Month, DATEPART(year,GETDATE()) AS Year
SELECT DATEPART(day,GETDATE()) AS Day ,DATEPART(month, GETDATE()) AS Month, DATEPART(year,GETDATE()) AS Year
