mysql建表語句

來源:互聯網
上載者:User

CREATE TABLE midprojects_producttype(
 id int(10) not null auto_increment primary key,
 name varchar(50),
 description varchar(50),
 orderid int
);

CREATE TABLE location_desc(
 id int(10) not null primary key,
 location_id int not null,
 location_name varchar(50) not null,
 location_desc varchar(50)
);

CREATE TABLE midprojects_p_location(
 id int(10) not null auto_increment primary key,
 projectname varchar(50) not null,
 location_id int,
 foreign key(location_id) references location_desc(id)
);

CREATE TABLE midprojects_p_detail(
 id int(10) not null auto_increment primary key,
 producttype_id int not null,
 p_location_id int(10) not null,
 bu_id int(10) not null,
 process_type_id int(10) not null,
 p_stage_id int(10) not null,
 FOREIGN KEY (producttype_id) REFERENCES midprojects_p_producttype(id),
 FOREIGN KEY (p_location_id) REFERENCES midprojects_p_location(id),
 FOREIGN KEY (bu_id) REFERENCES midprojects_p_bu(id),
 FOREIGN KEY (process_type_id) REFERENCES midprojects_p_process_type(id),
 FOREIGN KEY (p_stage_id) REFERENCES midprojects_p_stage(id)
);
CREATE TABLE stage_desc(
 id int(10) not null auto_increment primary key,
 stage_name varchar(50) not null,
 stage_desc varchar(50)
);

CREATE TABLE midprojects_p_stage(
 id int(10) not null auto_increment primary key,
 stage_id int(10) not null,
 updatetime date not null,
 enddatetime date not null,
 foreign key(stage_id) references stage_desc(id)
);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.