是否可以选择某个月的所有字段?
例如:我有’create_date’列和此列的值:
2011-05-06 11:12:13 (this) 2012-06-06 13:12:13 2010-02-06 14:52:13 2011-05-06 21:12:13 (this) 2001-08-06 16:12:13 2011-09-06 18:12:43 2009-01-06 11:12:13 2012-02-06 12:17:55 2010-03-06 14:15:13 2012-05-06 11:19:23 (this)
如何选择月份等于05的所有字段?
你可以用
SELECT create_date FROM table WHERE MONTH(create_date) = 5