1

当我将以下内容放入 phpMyAdmin

SELECT CountryCode, IndepYear, YEAR(STR_TO_DATE(IndepYear, "%Y%"))
from country
where 1

我得到以下

http://gyazo.com/faea56971dd257691c03ae7f38418c7c(截屏)

我不知道如何解决这个问题。

4

1 回答 1

0

如果列中有所有正数年份,IndepYear则查询可能类似于

SELECT CountryCode, IndepYear, YEAR(CURDATE())-IndepYear from country

您可以在docs中找到所有其他日期函数。

于 2013-09-05T14:48:42.657 回答