Keral_Patel
I'll do itRestricted (Chatroom)
- Impact
- 1,449
I have some databases for sale.
They are:
Facts database with around 4000 entries in it
Jokes database
Quotes database
Here is the example of the SQL
For Quotes it does have an extra field containing the Author's name.
Price = $20 for each.
Payment mode = Paypal
Thanks.
They are:
Facts database with around 4000 entries in it
Jokes database
Quotes database
Here is the example of the SQL
Code:
CREATE TABLE `tblfacts` (
`ID` bigint(4) unsigned NOT NULL auto_increment,
`Facts` text NOT NULL,
PRIMARY KEY (`ID`)
) TYPE=MyISAM PACK_KEYS=0 AUTO_INCREMENT=3094 ;
--
-- Dumping data for table `tblfacts`
--
INSERT INTO `tblfacts` VALUES (1, '"Bookkeeper" is the only word in English language with three consecutive double letters.\r\n');
INSERT INTO `tblfacts` VALUES (2, '"Dreamt" is the only English word that ends in the letters "mt".\r\n');
For Quotes it does have an extra field containing the Author's name.
Price = $20 for each.
Payment mode = Paypal
Thanks.





