当前位置:Gxlcms > 数据库问题 > 数据库

数据库

时间:2021-07-01 10:21:17 帮助过:1人阅读

 create table s_orderform(



          o_id int auto_increment primary key,

         o_buyer_id int,

         o_seller_id int,

         o_totalprices double,

         o_state varchar(50),

         o_information varchar(200),

         foreign key(o_buyer_id) references s_user(u_id),      #外链到s_user表的u_id字段

         foreign key(o_seller_id) references s_user(u_id)      #外链到s_user表的u_id字段

数据库

标签:

人气教程排行