1
年月日から年月日を取得しようとしています。私はこれを試してみました:日数、年月日の日数形式を変換する方法
SELECT enddate,startdate,extract(month from enddate)-extract(month from startdate)
FROM workexpdeails ;
年月日から年月日を取得しようとしています。私はこれを試してみました:日数、年月日の日数形式を変換する方法
SELECT enddate,startdate,extract(month from enddate)-extract(month from startdate)
FROM workexpdeails ;
SELECT
enddate
,startdate
,(YEAR(enddate)*12+MONTH(enddate)) - (YEAR(startdate)*12+MONTH(startdate))
as diffmonths
,DATEDIFF(enddate, startdate) as diffdays
FROM workexpdeails ;
参照してください:http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html
を使用すると、 "年の月の日数" とはどういう意味ですか? –