Skip to content

Commit 67c1d0e

Browse files
author
Ogerly
committed
Update README.md
1 parent e024442 commit 67c1d0e

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,26 @@ Ort, Kreis, Bundesland, PLZ, GeoCode von Orten in Deutschland
99
Die Datenbank
1010
=====================
1111

12-
datenbank_deutschland.sql
12+
--
13+
-- Tabellenstruktur für Tabelle `Dcitys`
14+
--
15+
16+
CREATE TABLE IF NOT EXISTS `Dcitys` (
17+
`id` int(11) NOT NULL AUTO_INCREMENT,
18+
`bundesland` varchar(30) DEFAULT NULL,
19+
`kreis` varchar(35) DEFAULT NULL,
20+
`stadt` varchar(30) DEFAULT NULL,
21+
`stadtteil` varchar(30) DEFAULT NULL,
22+
`recht` varchar(6) DEFAULT NULL,
23+
`lat` float DEFAULT NULL,
24+
`lon` float DEFAULT NULL,
25+
`plz` int(5) unsigned zerofill NOT NULL,
26+
PRIMARY KEY (`id`)
27+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Deutsche Städte' AUTO_INCREMENT=11369 ;
28+
29+
30+
31+
Die Daten
32+
33+
Wenn die Tabelle angelegt wurde importiere die data.sql
34+

0 commit comments

Comments
 (0)