Parse Date from MM/DD/YYYY to a format MYSQL can work with

前端 未结 3 1843
悲哀的现实
悲哀的现实 2021-01-28 13:55

Currently working with a MLS data dump in which all their dates are formatted in MM/DD/YYYY , Trying to get the min/max age

        MIN( DateDiff( NOW(), idx_com         


        
3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-28 14:10

    use java or c# or something to split the string of the date by the / and reorder the date into the format expected by mysql before you run the mysql query.

提交回复
热议问题