And yet another person who wants to use MySQL Reserved Words as column names. Look it's just setting yourself up doing this. Yes I know that the manual says
MySQL allows some keywords to be used as unquoted identifiers because many people have already used them. Examples are those in the following list:
.. DATE ...
But it makes your code non-standard SQL = unportable. It will also trip you up somewhere in a query where you least expect it.
Besides, what Date is this? Date_in, Date_updated, Birthday ??
There is NO situation where using a reserved word is the only option, and none where it is the best option. At some point down the track, in a year or two, you are going to re-read your code and see the reserved word as it's MySQL data type, function, or operator not the label. And what if someone else has to maintain it??
Make your names as meaningfull as possible. Make your code as explicit as possible, and don't set up bugs for the future.