hibernate中实体表对象我建了多对多关联映射,前几天导出表的时候,数据库里有基本表和多对多关系表,现在重新导出表的时候,数据库中只有基本表而没有多对多关系表,怎么回事啊。。。拜托。。。
hibernate明明都发了建多对多关系表的语句,数据库里怎么没有啊???
create table t_car_sp (carId int not null, spId int not null, primary key (carId, spId))
create table t_dd_sp (ddId int not null, spId int not null, primary key (ddId, spId))
create table t_store_sp (storeId int not null, spId int not null, primary key (storeId, spId))
为什么啊。。。