Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DataType conversion help

Status
Not open for further replies.

gtb12314

Programmer
Jan 7, 2008
41
0
0
US
Hi All,

I am using SQL SERVER 2005 and one of my table has varchar2 field whose value is date & time.

I want to know how to convert varchar2 field into just date datatype.

Any help is greatly appreciated.

Thanks in advance
 
Need an example of how the values are stored in the column.
 
I am sorry my varchar2 field has only date in it. And it's stored as 2008-08-01. I want to convert this into date datatype.

please help me out.
 
Try this

SELECT CONVERT(DATETIME, REPLACE(YourColumnName, '-', ''))
 
By the way, the code above assumes your example is specifying 08 as the month and 01 as the date.
 
my field name is receiveddate and its datatype is varchar2(10) and its value is 2008-08-01. So can I do like this as below:

CONVERT ( date , receiveddate )
 
Or, if you want yyyy-mm-dd

CONVERT(DATETIME, receivedate, 112)
 
I cannot convert just to date instead of datetime.
e.g. CONVERT ( date , receiveddate, 101 )
 
MS SQL only has DATETIME and SMALLDATETIME

You have to format it to show just the date.

Look at the link I posted, it should explain what you need.
 
There is no data type in SQL Server 2005 called DATE. Are you sure you're not using Oracle or using a user defined data type in SQL Server?
 
I tried both the below solutions but still I am getting the time along with date.

CONVERT(DATETIME, receivedate, 112)
CONVERT(DATETIME, receivedate, 101
 
Then you're not wanting to change the actual data type of the value. A DATETIME/SMALLDATETIME has a time component. There's no way to leave it off. You want a VARCHAR representation of it in a specified format. But it seems as though your original string value has the time left off already. So in that case, please provide a "before" and "after" of your example as far as how you want it formatted. Better yet, look up "CAST AND CONVERT" in books online (the SQL Server Help). It should give you some insight to the styles you can cast to.
 
Converting to a datetime will show the time.

Converting to NVARCHAR() will format as expected.

Here are two examples to run in Query analyzer

One converts a string value to a datetime the other converts the same data from a datetime to an NVARCHAR(10)

Code:
DECLARE @tTemp1 TABLE (iID INT IDENTITY(1,1) PRIMARY KEY,
 dDateTime DATETIME)

INSERT INTO @tTemp1(dDateTime)
VALUES('2008-01-05')
INSERT INTO @tTemp1(dDateTime)
VALUES('2008-01-06')
INSERT INTO @tTemp1(dDateTime)
VALUES('2008-01-07')


SELECT CONVERT(NVARCHAR(10), dDateTime, 101)AS 'TimeToChar' FROM @tTemp1

DECLARE @tTemp2 TABLE (iID INT IDENTITY(1,1) PRIMARY KEY,
 sDateTime NVARCHAR(10))

INSERT INTO @tTemp2(sDateTime)
VALUES('2008-01-05')
INSERT INTO @tTemp2(sDateTime)
VALUES('2008-01-06')
INSERT INTO @tTemp2(sDateTime)
VALUES('2008-01-07')


SELECT CONVERT(DATETIME, sDateTime, 101)AS [CharToTime]FROM @tTemp2

So, trying to convert to a datetime will not give you what you want, it works the other way around.

Are you tryingto change it to "date" for a reason, it sounds like it is already in that format?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top