Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
12answers
114k views

How to convert DateTime to VarChar

I am working on a query in Sql Server 2005 where I need to convert a value in DateTime variable into a varchar variable in 'yyyy-mm-dd' format (without time part). Please help, thanks.
3
votes
7answers
13k views

Custom Date/Time formatting in SQL Server

I am trying to write a stored procedure which selects columns from a table and adds 2 extra columns to the ResultSet. These 2 extra columns are the result of conversions on a field in the table which ...
0
votes
2answers
101 views

convert bigint to nvarchar by format

How can I convert bigint to nvarchar using the following scheme: 1 converts to 0001 123 converts to 0123
0
votes
4answers
166 views

Conversion of varchar into Datetime

Why does the following code work: CAST(DateOfAction AS Date) but this code does not: CAST(DateOfAction AS Datetime) note: DateOfAction is a varchar field Much appreciate if someone ...