Home > Backend Development > PHP Tutorial > thinkPHP数据库有关问题

thinkPHP数据库有关问题

WBOY
Release: 2016-06-13 12:53:02
Original
736 people have browsed it

thinkPHP数据库问题
如果我想关联两张表,可以使用join把两张表的内容整合在一起查询出来,但是我想把一个表单的内容,根据内容插入到两个不同的表,要怎么操作?

知道的给个思路,谢谢!!


------解决方案--------------------
用关联数组可以解决
------解决方案--------------------
可以用关联表,HAS_MANY,BELONGS_TO,MANY_TO_MANY
------解决方案--------------------
2楼是正确的, 我打错字, 使用              关联模型                


你看一下, TP 的手册,  6.23               关联模型




6.23.4          关联操作




除了关联查询外,系统也支持关联数据的自动写入、更新和删除

关联写入

$User = D("User");

$data = array();

$data["account"] =          "ThinkPHP";

$data["password"]          =          "123456";

$data["Profile"]   =          array(

     'email'             =>'liu21st@gmail.com',

'nickname'           =>'流年',

   );

$result =  $User->relation(true)->add($user);

这样就会自动写入关联的Profile数据。

同样,可以使用参数来控制要关联写入的数据:

$result =  $User->relation("Profile")->add($user);


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template