多表对多表的添加

Posted meimou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多表对多表的添加相关的知识,希望对你有一定的参考价值。

添加的控制器

array_pop 摘除最后一个字段。

连接产品表,

添加数据

if($res){

分类的id

产品的id

连接中间表的数据库

添加两个id

前端显示的数据,

连接中间的数据库,

多表对多表的查询,

$Model->field(‘id,title,content‘)->select(); //过滤 可以用as起别名。

  1. $Model = M(‘Artist‘);   //中间表
  2. $Model
  3. ->join(‘think_work ON think_artist.id = think_work.artist_id‘)  //前面一个表  后面是对应的id或者信息
  4. ->join(‘think_card ON think_artist.card_id = think_card.id‘)  //另一个表名   同上
  5. ->select();

 

以上是关于多表对多表的添加的主要内容,如果未能解决你的问题,请参考以下文章

day 64 Django 第五天 多表对多表的对应关系ORM

springdatajpa多表对多表有额外字段的情况处理

python flask(多对多表查询)

创建多对多表关系的三种方式

多对多表应该有一个主键吗?

跨多对多表的关系