您好,我有一个名为“
”的字段的“ courses_vitae”表 id int pk
user_id int
education_from date
education_to date.
它具有 date 类型,现在我想通过将其移动到新表(例如education_from_year和education_to_year)中,将其更改为年份和 year 类型。我该怎么办?
答案 0 :(得分:2)
您可以避免转换。
对于MySql中的有效日期列,您可以使用Year()从日期中获取年份值
import pyttsx3
engine = pyttsx3.init()
,如果您确实需要在同一行上使用冗余值,则可以使用
select year(education_from) , year(education_to )
from your_table