About 23,200,000 results
Open links in new tab
  1. 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 …

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

  3. 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() …

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

  5. sql - How do I use select with date condition? - Stack Overflow

    Mar 30, 2009 · In sqlserver, how do I compare dates? For example: Select * from Users where RegistrationDate >= '1/20/2009' (RegistrationDate is datetime type) Thanks

  6. time - What 'T' and 'Z' means in date - Stack Overflow

    May 13, 2015 · A single point in time can be represented by concatenating a complete date expression, the letter T as a delimiter, and a valid time expression. For example "2007-04 …

  7. Oracle SQL - DATE greater than statement - Stack Overflow

    Dec 31, 2014 · WHERE OrderDate <= DATE '2015-12-31' If you want to use TO_DATE (because, for example, your query value is not a literal), I suggest you to explicitly set the …

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

  9. How to freeze the =today() function once data has been entered

    Aug 2, 2015 · The TODAY function is volatile and recalculates on every calculation cycle in the workbook. If you want a timestamp look towards a VBA Worksheet_Change event macro that …

  10. SQL Server - How to convert varchar to date - Stack Overflow

    Jul 8, 2018 · Because DATE or DATETIME is internally stored without format. It's just depends on settings how a date/datetime/datetime2 is presented to you by default when you select from it.