Advertisement
Guest User

MySQL Navi - Tabelle

a guest
Nov 27th, 2011
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 3.61 KB | None | 0 0
  1. --
  2. -- Table structure for table `navi_categories`
  3. --
  4.  
  5. CREATE TABLE IF NOT EXISTS `navi_categories` (
  6.   `id` INT(11) NOT NULL AUTO_INCREMENT,
  7.   `sub` INT(11) NOT NULL,
  8.   `navilevel` INT(11) NOT NULL,
  9.   `name` VARCHAR(32) CHARACTER SET latin1 NOT NULL,
  10.   PRIMARY KEY (`id`)
  11. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=16 ;
  12.  
  13. --
  14. -- Dumping data for table `navi_categories`
  15. --
  16.  
  17. INSERT INTO `navi_categories` (`id`, `sub`, `navilevel`, `name`) VALUES
  18. (7, 5, 0, 'Holzfäller'),
  19. (2, 0, 0, 'Los Santos'),
  20. (3, 0, 0, 'San Fierro'),
  21. (4, 0, 0, 'Las Venturas'),
  22. (5, 0, 0, 'Jobs'),
  23. (6, 0, 0, 'Sonstiges'),
  24. (8, 5, 0, 'Minenarbeiter'),
  25. (9, 5, 0, 'Bauer'),
  26. (10, 5, 0, 'Trucker'),
  27. (11, 5, 0, 'Fischer'),
  28. (15, 5, 0, 'Mechaniker'),
  29. (14, 0, 1, 'Illegales');
  30.  
  31. -- --------------------------------------------------------
  32.  
  33. --
  34. -- Table structure for table `navi_places`
  35. --
  36.  
  37. CREATE TABLE IF NOT EXISTS `navi_places` (
  38.   `id` INT(11) NOT NULL AUTO_INCREMENT,
  39.   `category` INT(10) UNSIGNED NOT NULL,
  40.   `name` VARCHAR(128) CHARACTER SET latin1 NOT NULL,
  41.   `posx` FLOAT NOT NULL,
  42.   `posy` FLOAT NOT NULL,
  43.   `posz` FLOAT NOT NULL,
  44.   PRIMARY KEY (`id`)
  45. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=43 ;
  46.  
  47. --
  48. -- Dumping data for table `navi_places`
  49. --
  50.  
  51. INSERT INTO `navi_places` (`id`, `category`, `name`, `posx`, `posy`, `posz`) VALUES
  52. (1, 2, 'Autohaus Coutt and Schutz', 2155.09, -1167.06, 23.55),
  53. (2, 2, 'Arbeitsamt', 912, -990.8, 38),
  54. (3, 2, 'Los Santos Police Department', 1529.23, -1672.51, 13.3828),
  55. (4, 2, 'Krankenhaus', 1200.63, -1323.54, 13.3984),
  56. (5, 2, 'Zivilisten Spawn', 346.292, -1770.08, 5.0473),
  57. (6, 2, 'Rathaus', 1480.54, -1732.03, 13.3828),
  58. (7, 2, 'Burgershot North ', 1216.3, -913.172, 42.9178),
  59. (8, 2, 'Burgershot South', 825.813, -1624.87, 13.3828),
  60. (9, 2, 'Ammunation ', 1350.64, -1279.14, 13.3828),
  61. (10, 2, 'Taxi-Station', 1275.24, -1337.26, 13.06),
  62. (11, 3, 'Autohaus Otto''s Autos', -1635.35, 1207.68, 7.0391),
  63. (12, 3, 'San Fierro Police Department', -1605.51, 731.367, 11.8112),
  64. (13, 3, 'Krankenhaus ', -2666.66, 573.148, 14.4544),
  65. (14, 3, 'Autohaus Wang Cars', -1989.54, 288.627, 34.1947),
  66. (15, 3, 'Fahrschule', -2864.49, 467.445, 4.8464),
  67. (16, 2, 'Flughafen Los Santos', -1426.09, -292.61, 14.1484),
  68. (17, 3, 'Flughafen San Fierro', 1961.54, -2183.94, 13.5469),
  69. (18, 4, 'Flughafen Las Venturas', 1725.58, 1602.53, 10.0139),
  70. (20, 7, 'Holzfäller-Lager', -837.867, -139.904, 62.8566),
  71. (21, 8, 'Bergmine Las Venturas', 857.115, 866.383, 13.3516),
  72. (22, 9, 'Bauernhof der Blueberry Acker', -51.58, 17.4, 3.12),
  73. (23, 11, 'Hafen Los Santos', 2598.76, -2396.06, 13.5051),
  74. (24, 10, 'Erzlager der Bergmine', 370.447, 981.245, 29.7576),
  75. (25, 10, 'Fischlager vom Hafen Los Santos', 2760.44, -2453.48, 13.5461),
  76. (26, 10, 'Truckdepot Fleischberg', 73.6198, -211.111, 1.4451),
  77. (27, 10, 'Holzlager bei Blueberry', -837.867, -139.904, 62.8566),
  78. (28, 10, 'Sägewerk in Angel Pine', -1976.76, -2445.38, 30.625),
  79. (29, 10, 'Stahlwerk bei San Fierro', -1039.26, -587.89, 32),
  80. (30, 14, 'Stahlwerk bei San Fierro', -1039.26, -587.89, 32),
  81. (31, 14, 'Materialverarbeitung in Las Venturas', 2463.63, 1963.48, 10.8203),
  82. (32, 14, 'Drogenlabor in San Fierro', -2137.76, -188.741, 34.8835),
  83. (33, 14, 'Bauernhof in Blueberry', -51.58, 17.4, 3.12),
  84. (38, 4, 'Flugzeug- und Bootshändler', 2287.67, 626.821, 10.8512),
  85. (36, 6, 'Nächster Pay n Spray', 0, 0, 0),
  86. (39, 15, 'Mechaniker Basis', 1411.83, -1648.69, 13.3828),
  87. (40, 2, 'ZIP Kleidungsgeschäft', 1459.69, -1140.98, 24.053),
  88. (41, 2, 'Fahrradhändler', 342.85, -1352.17, 14.5078),
  89. (42, 2, 'Werbecenter', 1316.32, -1559.33, 13.3906);
  90.  
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement