About 19,600,000 results
Open links in new tab
  1. Delete all old emails after a certain date - Gmail Community

    Sep 7, 2023 · Delete all old emails after a certain date I have too many emails. How do I delete all those older than a certain date? I haven't tried anything because I can't keep selecting and …

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

    Apr 21, 2020 · date If you want to cast into date, then you can first cast to datetime64[ns] and then use dt.date to get a column of datetime.date objects:

  3. python - How do I convert a datetime to date? - Stack Overflow

    Sep 18, 2010 · How do I convert a datetime.datetime object (e.g., the return value of datetime.datetime.now()) to a datetime.date object in Python?

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

    Dec 17, 2015 · A DATE data type contains both date and time elements. If you are not concerned about the time portion, then you could also use the ANSI Date literal which uses a fixed format …

  5. bash - YYYY-MM-DD format date in shell script - Stack Overflow

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

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

    Sep 22, 2009 · The code below gives me the current time. But it does not tell anything about milliseconds. public static String getCurrentTimeStamp() { SimpleDateFormat sdfDate = new …

  7. How to get year/month/day from a date object? - Stack Overflow

    Jan 6, 2010 · Note: you don't actualy need to add new Date() if you want the current TimeDate, I only added it as a reference that you can pass a date object to it. for the current TimeDate this …

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

    Instant.parse ( "2011-08-12T20:17:46.384Z" ) ISO 8601 This format is defined by the sensible practical standard, ISO 8601. The T separates the date portion from the time-of-day portion. …

  9. How to check whether an object is a date? - Stack Overflow

    Detecting a Date type object (as opposed to a plain Object or a string) and validating an object you expect to be a Date are two different tasks. There are a number of situations where the …

  10. Comparing date part only without comparing time in JavaScript

    Feb 3, 2017 · The following function returns a wrapped date object, and only exposes those functions that are safe to use with just-a-date™. Call it with a Date object and it will resolve to …