About 17,100,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. Python date string to date object - Stack Overflow

    Sep 26, 2018 · you could run this code on a list of string object similar to above and convert the entire list of tuples object to date object by simply unpacking (*tuple) check the code below.

  3. 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.

  4. Convert Date format into DD/MMM/YYYY format in SQL Server

    Jun 25, 2013 · I have a query in SQL, I have to get a date in a format of dd/mm/yy Example: 25/jun/2013. How can I convert it for SQL server?

  5. How to format a DateTime in PowerShell - Stack Overflow

    If you call Get-Date -format "yyyyMMdd" you call a cmdlet with some parameters. The value "yyyyMMdd" is the value for parameter Format (try help Get-Date -param Format).

  6. 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 …

  7. 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.

  8. date - How to get the current time in YYYY-MM-DD …

    Sep 22, 2009 · This Java SE 8 Date and Time document has a good overview about it. So in Java 8 something like below will do the trick (to format the current date/time), LocalDateTime.now() …

  9. Convert string to date in specific format - Stack Overflow

    Jul 22, 2014 · How do I convert a string to a date type in SQL Server 2008 R2? My string is formatted dd/mm/yyyy I tried this SELECT CAST('01/08/2014' AS DATE) But that does the …

  10. Pandas: Convert Timestamp to datetime.date - Stack Overflow

    Dec 25, 2013 · 7 You can convert a datetime.date object into a pandas Timestamp like this: #!/usr/bin/env python3 # coding: utf-8 import pandas as pd import datetime # create a datetime …