About 19,300,000 results
Open links in new tab
  1. bash - YYYY-MM-DD format date in shell script - Stack Overflow

    Sep 9, 2009 · I tried using $(date) in my bash shell script, however, I want the date in YYYY-MM-DD format. How do I get this?

  2. windows - What does %date:~-4,4%%date:~-10,2%%date:~ …

    Mar 22, 2016 · The above command line defines an environment variable with name fileName starting with fixed string db_, appending with %date:~-4,4% the last four characters of the …

  3. How do I query for all dates greater than a certain date in SQL …

    where A.Date >= '2010-04-01' it will do the conversion for you, but in my opinion it is less readable than explicitly converting to a DateTime for the maintenance programmer that will come after you.

  4. SQL query to select dates between two dates - Stack Overflow

    Feb 25, 2011 · I have a start_date and end_date. I want to get the list of dates in between these two dates. Can anyone help me pointing the mistake in my query. select Date,TotalAllowance …

  5. What is this date format? 2011-08-12T20:17:46.384Z

    Aug 12, 2011 · java.text.ParseException: Unparseable date: "2011-08-12T20:17:46.384Z" I think I should be using SimpleDateFormat for parsing, but I have to know the format string first.

  6. Compare two dates with JavaScript - Stack Overflow

    Feb 27, 2020 · Can someone suggest a way to compare the values of two dates greater than, less than, and not in the past using JavaScript? The values will be coming from text boxes.

  7. Pandas 'astype' with date (or datetime) - Stack Overflow

    Apr 21, 2020 · df = df.astype({'date': 'datetime64[ns]'}) worked by the way. I think that must have considerable built-in ability for different date formats, year first or last, two or four digit year. I …

  8. sql - How to insert date values into table - Stack Overflow

    Dec 17, 2015 · In Oracle '2018-10-20' is a string, not a date. You must explicitly convert the string into date using TO_DATE with appropriate format mask or use ANSI date literal which uses …

  9. Format date and time in a Windows batch script - Stack Overflow

    In a Windows (Windows XP) batch script I need to format the current date and time for later use in files names, etc. It is similar to Stack Overflow question How to append a date in batch fil...

  10. date - Difference between dd-mm-yyyy and dd-mmm-yyyy - Stack …

    Jul 28, 2016 · Is it ok to use dd-mm-yyyy or dd-mmm-yyyy for UK. I used dd-mmm-yyyy format in my web application for UK. Select CONVERT(varchar(11),ArrivalDate,106) But the PM asked …