![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
|
From within a stored procedure I would like to insert a date value into another table to a Char(8) field....but I want the value to be |
#2
| |||
| |||
|
|
I thought this would be easy, and I've read a lot of posts, but I can't seem to find exactly what I'm trying to do. From within a stored procedure I would like to insert a date value into another table to a Char(8) field....but I want the value to be formatted as YYYYMMDD (specifically no "/"'s) Insert into Temp (sFromDate) Values (getdate()) (20070221) |
#3
| |||
| |||
|
|
(paulmac... (AT) gmail (DOT) com) writes: I thought this would be easy, and I've read a lot of posts, but I can't seem to find exactly what I'm trying to do. From within a stored procedure I would like to insert a date value into another table to a Char(8) field....but I want the value to be formatted as YYYYMMDD (specifically no "/"'s) Insert into Temp (sFromDate) Values (getdate()) (20070221) convert(char(8), getdate(), 112) Read more about Convert under the topic CAST and CONVERT in Books Online. -- Erland Sommarskog, SQL Server MVP, esq... (AT) sommarskog (DOT) se Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books... Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |
#4
| |||
| |||
|
|
Hello, I thought this would be easy, and I've read a lot of posts, but I can't seem to find exactly what I'm trying to do. From within a stored procedure I would like to insert a date value into another table to a Char(8) field....but I want the value to be formatted as YYYYMMDD (specifically no "/"'s) Insert into Temp (sFromDate) Values (getdate()) (20070221) Any ideas? thanks so much! |
![]() |
| Thread Tools | |
| Display Modes | |
| |