SQL DataType - How to store a year?

前端 未结 9 916
没有蜡笔的小新
没有蜡笔的小新 2020-12-03 06:27

I need to insert a year(eg:1988 ,1990 etc) in a database. When I used Date or Datetime data type, it is showing errors. Which datatype should I use.

9条回答
  •  抹茶落季
    2020-12-03 07:22

    Use integer if all you need to store is the year. You can also use datetime if you think there will be date based calculations while querying this column

提交回复
热议问题