- BadGuyId(int,auto_increment = true)
- BadGuyName(字符串)
- BadGuyPicture(字符串)
醇>
问题是,我必须像下面的列表一样调整id。当新行相互添加时,两个表中都没有相同的ID 。
- GoodGuyId => 0 ,GoodGuyName => ...,GoodGuyPicture => ...
- GoodGuyId => 1 ,GoodGuyName => ...,GoodGuyPicture => ...
- BadGuyId => 2 ,BadGuyName => ...,BadGuyPicture => ...
- GoodGuyId => 3 ,GoodGuyName => ...,GoodGuyPicture => ...
- BadGuyId => 4 ,BadGuyName => ...,BadGuyPicture => ...
醇>
是否有自动方式将它们整合在一起?