Pillemon Posted August 23, 2007 Report Share Posted August 23, 2007 Hallo Leute, erst mal Guten Morgen und so..... habe ne Ausbildung als FA-Anwendungsentwicklung angefangen und habe die Aufgabe bekommen für eine Artikelverwaltung eine Datenbankstruktur zu machen das ganze per DB Designer 4 (vll kennt das ja jemand) habe ich auch alles gemacht und sieht sehr gut aus, doch wenn ich jetzt den MySQL Text der Struktur unter phpMyAdmin als SQL Tag eingebe bekomme ich einen Fehler, und zwar: MySQL meldet: Dokumentation #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') )' at line 5 Hier mal der komplette MySQL Text: CREATE TABLE article ( art_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, categories_cat_id SMALLINT UNSIGNED NOT NULL, art_name VARCHAR(255) NOT NULL, art_description VARCHAR(255) NOT NULL, art_long_description TEXT NULL, art_price FLOAT NOT NULL, art_units SMALLINT UNSIGNED NOT NULL, art_date DATETIME NOT NULL, PRIMARY KEY(art_id), INDEX article_FKIndex1(categories_cat_id) ); CREATE TABLE article_to_orders ( article_art_id SMALLINT UNSIGNED NOT NULL, orders_order_id SMALLINT UNSIGNED NOT NULL, art_units INTEGER UNSIGNED NULL, INDEX article_to_orders_FKIndex1(orders_order_id), INDEX article_to_orders_FKIndex2(article_art_id) ); CREATE TABLE categories ( cat_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, cat_name VARCHAR(255) NOT NULL, PRIMARY KEY(cat_id), UNIQUE INDEX categories_index1172() ); CREATE TABLE customers ( cus_id SMALLINT UNSIGNED NOT NULL, name VARCHAR(64) NOT NULL, givenname VARCHAR(148) NOT NULL, adress VARCHAR(255) NOT NULL, zip MEDIUMINT UNSIGNED NOT NULL, city VARCHAR(255) NOT NULL, mail VARCHAR(255) NULL, PRIMARY KEY(cus_id) ); CREATE TABLE orders ( order_id SMALLINT UNSIGNED NOT NULL, customers_cus_id SMALLINT UNSIGNED NOT NULL, date DATETIME NULL, payment_type INTEGER UNSIGNED NULL, PRIMARY KEY(order_id), INDEX orders_FKIndex1(customers_cus_id) ); Vielleicht weiß ja einer von euch wieso diese Fehlermeldung auftaucht und kann es mir erklären.... Habe ka wieso.... Vielen Dank und gruß Pillemon Link to comment Share on other sites More sharing options...
Pillemon Posted August 23, 2007 Author Report Share Posted August 23, 2007 kann geschlossen werden.... habe den fehler selber gefunden..... der unique index war keinem eintrag in der tabelle zugeortnent Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.