Possible Duplicate
http://stackoverflow.com/questions/95183/how-does-one-create-an-index-on-the-date-part-of-datetime-field-in-mysql
In mysql. It's a date column
Possible Duplicate
http://stackoverflow.com/questions/95183/how-does-one-create-an-index-on-the-date-part-of-datetime-field-in-mysql
In mysql. It's a date column
You do it in the same way as you would for any other column type:
CREATE INDEX IX_tblname_columnname
ON tbl_name (columnname)
See the documentation for more information and other options.