About 23,300,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. casting - Converting a string to a date in DB2 - Stack Overflow

    Jan 9, 2015 · I am working with a DB2 database for the first time. I am trying to work with DB2 dates, but the data is stored as a string in the DB2 database. I want to convert this date-string …

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

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

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

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

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

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

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

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