UK postcode database including postcodes for Scotland, England, Wales and
NI
Full format post codes: SW12 8BL not just SW12 listed from A-Z with coordinates.
Over 2 million UK street postcodes including their Latitude and Longitude...
Car specifications database containing 23,000+ records of different car specs:
Structure:
DROP TABLE IF EXISTS `Autos`;
CREATE TABLE `Autos` (
ID INT NOT NULL AUTO_INCREMENT,
Year INT DEFAULT 0,
Make VARCHAR(50),
Model VARCHAR(50),
Style...
Simple car database including ´make´ and ´model´ 5,000+ records.
Structure:
CREATE TABLE `cars` (
`id` int(4) NOT NULL auto_increment,
`year` year(4) NOT NULL,
`make` varchar(25) NOT NULL,
`model` varchar(25) NOT NULL,...