MySQL Forums
Forum List  »  Performance

Re: Select last date check all rows
Posted by: Pär Nordlund
Date: August 06, 2015 03:11AM

Thanks, i will try the flush thing later, dont have access to that atm.

Heres the create


CREATE TABLE `casts` (
`cast_id` int(5) NOT NULL AUTO_INCREMENT,
`caster_id` int(5) NOT NULL,
`cast_uploaded` datetime NOT NULL,
`cast_name` varchar(255) NOT NULL,
`cast_desc` text NOT NULL,
`cast_filter` text NOT NULL,
PRIMARY KEY (`cast_id`),
KEY `cast_name` (`cast_name`),
KEY `caster_id` (`caster_id`),
KEY `cast_uploaded` (`cast_uploaded`),
FULLTEXT KEY `cast_filter` (`cast_filter`)
) ENGINE=MyISAM AUTO_INCREMENT=89158 DEFAULT CHARSET=utf8

Options: ReplyQuote


Subject
Views
Written By
Posted
1491
August 04, 2015 08:47AM
697
August 05, 2015 05:49PM
Re: Select last date check all rows
813
August 06, 2015 03:11AM
612
August 06, 2015 10:36PM
688
August 08, 2015 11:11AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.