Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Statement to change month only in datetime field
Message
 
To
20/06/2008 10:32:42
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01325730
Message ID:
01325745
Views:
13
>SQLServer 2000
>
>About 100 records had the month in a datetime field set wrong. I need to set them back but only the month portion in a datetime field. For example:
>
>SQL DATE: 0807171234
>Correct Date: 0806171234
>
>Any ideas on how to change only the month portion of sql datetime field and then specifiy which month?
SELECT LEFT(Field,2)+RIGHT('00'+CONVERT(varchar(2),CAST(SUBSTRING(Field,3,2) as int)-1),2)+SUBSTRING(Field,5,10) As Test
FROM YourTable
not tested.
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Reply
Map
View

Click here to load this message in the networking platform