Displaying 1 result from an estimated 1 matches for "experience_id".
2006 Mar 29
0
has_and_belongs_to_many and collections management
...not null auto_increment,
name varchar(255) not null,
primary key (id)
);
create table experiences (
id int not null auto_increment,
name varchar(255) not null,
primary key (id)
);
create table experiences_people (
person_id int not null,
knowledge_id int not null,
experience_id int not null
);
Let''s insert some default values:
insert into knowledges (name) values ("Books");
insert into knowledges (name) values ("Music");
insert into knowledges (name) values ("Sports");
insert into experiences (name) values ("Bad");
inser...