tagged [date]
Oracle: how to add minutes to a timestamp?
Oracle: how to add minutes to a timestamp? I need to add 30 minutes to values in a Oracle date column. I do this in my SELECT statement by specifying `to_char(date_and_time + (.000694 * 31)` which wor...
- Modified
- 10 Feb at 15:24
Sqlite convert string to date
Sqlite convert string to date I have date stored as string in an sqlite database like "28/11/2010". I want to convert the string to date. Specifically I have to convert lots of string dates between t...
- Modified
- 5 Jul at 11:12
Format date as dd/MM/yyyy using pipes
Format date as dd/MM/yyyy using pipes I'm using the `date` pipe to format my date, but I just can't get the exact format I want without a workaround. Am I understanding pipes wrongly or is just not po...
- Modified
- 2 Nov at 22:40
Is there a date format to display the day of the week in java?
Is there a date format to display the day of the week in java? I know of date formats such as `"yyyy-mm-dd"` -which displays date in format `2011-02-26` `"yyyy-MMM-dd"`-which displays date in format `...
- Modified
- 21 Jun at 12:11
Calculate the date yesterday in JavaScript
Calculate the date yesterday in JavaScript How can I calculate as a date in JavaScript?
- Modified
- 22 Dec at 02:48
Check time difference in Javascript
Check time difference in Javascript How would you check time difference from two text-boxes in Javascript?
- Modified
- 15 Feb at 15:51
What was the date 180 days ago?
What was the date 180 days ago? How would I get the date 180 days ago using C#?
How to convert date to timestamp in PHP?
How to convert date to timestamp in PHP? How do I get timestamp from e.g. `22-09-2008`?
Best way to store date/time in mongodb
Best way to store date/time in mongodb I've seen using strings, integer timestamps and mongo datetime objects.
C# seconds since specific date
C# seconds since specific date In C# 3.0, how do I get the seconds since 1/1/2010?
- Modified
- 16 Apr at 20:0
Change date format in a Java string
Change date format in a Java string I've a `String` representing a date. I'd like to convert it to a `Date` and output it in `YYYY-MM-DD` format. > 2011-01-18 How can I achieve this? --- Okay, based o...
- Modified
- 5 Aug at 13:6
How to get time difference in minutes in PHP
How to get time difference in minutes in PHP How to calculate minute difference between two date-times in PHP?
How to convert current date into string in java?
How to convert current date into string in java? How do I convert the current date into string in Java?
- Modified
- 22 Mar at 01:21
Check if year is leap year in javascript
Check if year is leap year in javascript This is what I have so far (the entry is o
- Modified
- 25 Jun at 20:54
java.util.Date to XMLGregorianCalendar
java.util.Date to XMLGregorianCalendar Isn't there a convenient way of getting from a java.util.Date to a XMLGregorianCalendar?
- Modified
- 25 May at 14:25
Convert to date format dd/mm/yyyy
Convert to date format dd/mm/yyyy I have the following date: . I would like to convert this date to the format.
How to get current time and date in Android
How to get current time and date in Android How can I get the current time and date in an Android app?
Java: Get month Integer from Date
Java: Get month Integer from Date How do I get the month as an integer from a Date object (`java.util.Date`)?
What are the "standard unambiguous date" formats for string-to-date conversion in R?
What are the "standard unambiguous date" formats for string-to-date conversion in R? Please consider the following But that date clearly in a standard unambiguous format. Why the error message? Worse,...
- Modified
- 25 Feb at 01:26
Display the current time and date in an Android application
Display the current time and date in an Android application How do I display the current date and time in an Android application?
- Modified
- 16 Dec at 14:47
Extracting date from a string in Python
Extracting date from a string in Python How can I extract the date from a string like "monkey 2010-07-10 love banana"? Thanks!
Javascript format date / time
Javascript format date / time I need to change a date/time from to look like Can this be done using javascript's Date object?
- Modified
- 12 Aug at 23:23
How can I calculate/find the week-number of a given date?
How can I calculate/find the week-number of a given date? How can I calculate/find the week-number of a given date?