Home > Backend Development > PHP Tutorial > thinkphp 怎么使用add方法 插入一个表的数据到另一个表

thinkphp 怎么使用add方法 插入一个表的数据到另一个表

WBOY
Release: 2016-06-23 13:21:12
Original
1879 people have browsed it

就是把一个表的数据插入到另一个结构一模一样的表里  如何使用add方法进行操作?


回复讨论(解决方案)

php 内置的数据库对象均没有 add 方法
显然你的 add 方法是自己定义的,当然也应该由你自己来迎合需求

$m = M("user");
$data['name'] = 'kobe';
$data['age'] = 36;
$m->add($data);
echo $m->getLastSql();//执行下sql,看是否满足sql语法。

addAll可以么?

M('Test2')->addAll(M('Test1')->select());
Copy after login

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