hello,
CREATE TABLE `populer_books`
( `id` bigint(22) NOT NULL auto_increment,
`books` int(11) default NULL,
`user` int(11) default NULL,
`editor` int(11) default NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`))
ENGINE=MyISAM;
this is mysql table structure
i wish to list the books which are added to this table at list 10 times by users. will you please help me with the mysql query?
thanks...
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --