Top "String-to-datetime" questions

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, …

sql-server tsql datetime sql-server-2005 string-to-datetime
Convert string to datetime in javascript and compare with current time

I am trying to pick up value from datetimepicker tetxbox and compare those values with current time. JSFiddle //startTime textbox …

javascript jquery string-to-datetime
NSDateFormatter return wrong date + Swift

Code : let dateString = "2016-04-02" var formatter: NSDateFormatter = NSDateFormatter() formatter.timeZone = NSTimeZone(abbreviation: "GMT +3:00") formatter.dateFormat = "yyyy-MM-dd" println("dateString: \(dateString)") …

swift nsdate nsdateformatter string-to-datetime
Why is pandas.to_datetime slow for non standard time format such as '2014/12/31'

I have a .csv file in such format timestmp, p 2014/12/31 00:31:01:9200, 0.7 2014/12/31 00:31:12:1700, 1.9 ... and when read via pd.read_csv and convert the …

python csv pandas python-datetime string-to-datetime
How to convert numpy.timedelta64 to minutes

I have a date time column in a Pandas DataFrame and I'd like to convert it to minutes or seconds. …

numpy pandas string-to-datetime
STR_TO_DATE() function of MySQL

I have date in this format 5 Mar 1985 0:00 stored in table as VARCHAR. I want to convert it into Datetime, I …

mysql date string-to-datetime
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 …

sql sql-server tsql string-to-datetime
How do I cast dd/mm/yyyy string into date in BigQuery?

I have 3 columns 1. dd/mm/yyyy (stored as a string) 2. app_id and #downloads of apps I have to find …

datetime casting google-bigquery string-to-datetime
Convert string to date using moment.js

This my model.ts export class Feature2 { requestRouteTemplate: string; requestMethod: string; numberCount: number; requestDate: date; constructor(values: Object = {}) { Object.assign(…

string angular date momentjs string-to-datetime
Change dataframe column names from string format to datetime

I have a dataframe where the names of the columns are dates (Year-month) in the form of strings. How can …

python pandas dataframe string-to-datetime