hollachens zusammen,
mit
CREATE TABLE person (
id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
name CHAR(60) NOT NULL,
PRIMARY KEY (id)
);
CREATE TABLE shirt (
id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
style ENUM('t-shirt', 'polo', 'dress') NOT NULL,
color ENUM('red', 'blue', 'orange', 'white', 'black') NOT NULL,
owner SMALLINT UNSIGNED NOT NULL REFERENCES person(id),
PRIMARY KEY (id)
);
bekomme ich ja einen fremdschlüssel untergebracht. mit mysql_field_flags() bekomm ich die (erweiterten eigenschaften) eines feldes. wie bekomm ich nun aber raus, das owner die refernz auf person.id ist ??? *überleg*
meine vorhandene doku gibt mir dazu nüscht her
bis denne
megle
mit
CREATE TABLE person (
id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
name CHAR(60) NOT NULL,
PRIMARY KEY (id)
);
CREATE TABLE shirt (
id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
style ENUM('t-shirt', 'polo', 'dress') NOT NULL,
color ENUM('red', 'blue', 'orange', 'white', 'black') NOT NULL,
owner SMALLINT UNSIGNED NOT NULL REFERENCES person(id),
PRIMARY KEY (id)
);
bekomme ich ja einen fremdschlüssel untergebracht. mit mysql_field_flags() bekomm ich die (erweiterten eigenschaften) eines feldes. wie bekomm ich nun aber raus, das owner die refernz auf person.id ist ??? *überleg*
meine vorhandene doku gibt mir dazu nüscht her
bis denne
megle
Kommentar