The string-to-datetime tag has no wiki summary.
11
votes
9answers
54k views
Sql Server string to date conversion
I want to convert a string like this:
'10/15/2008 10:06:32 PM'
into the equivalent DATETIME value in Sql Server.
In Oracle, I would say this:
TO_DATE('10/15/2008 10:06:32 PM','MM/DD/YYYY HH:MI:SS ...
3
votes
1answer
174 views
Using STR_to_DATE in PHP SQL Query
I need a way of changing the format the date format from datetime to just the date in an SQL query, I have tried:
$sql="SELECT created_by FROM meetings WHERE STR_TO_DATE('date_start', ...
2
votes
2answers
409 views
Converting a unix time stamp to twitter/facebook style
I'm trying to convert a unix time stamp to display like facebook and twitter. For example, when you see tweets or comments placed on twitter/facebook you see the date/time displayed like so:
'2 mins ...
1
vote
2answers
72 views
Objective C: Converting string to nsdate issue
I spent couple of hours to resolve this weird issue. I have date formate in "dd/mm/yyyy hh:mm:ss" and want to know the difference in seconds between my date and NOW. I am doing it like below but not ...
1
vote
4answers
49 views
String to time in php
I am making a web application that connects to user's Dropbox account. When i retrieve metadata of files and folders, Dropbox returns corresponding modified dates on following format:
"Sat, 21 Aug ...
1
vote
4answers
449 views
str_to_date function in sql server?
MySQL has a function called STR_TO_DATE, that converts a string to date.
Question:
Is there a similar function in SQL Server?
0
votes
2answers
31 views
Unable to parse string to DateTime
I have this string:
Fri, 13 Jan 2012 04:26:42 PST
I tries to parse it like that:
DateTime.TryParse("Fri, 13 Jan 2012 04:26:42 PST", out date)
Or like that:
Convert.ToDateTime("Fri, 13 Jan 2012 ...
0
votes
1answer
59 views
Heroku: to_datetime does not take into account the rails' i18n.locale
Edit: (to be clear and to the point)
I want the following to work on heroku: "11/13/2011".to_datetime, meaning I need the dates to be in english format. Thanks
I've set this the i18n locale in my ...