Home > Backend Development > PHP Tutorial > thinkphp分表如何使用

thinkphp分表如何使用

WBOY
Release: 2016-06-13 12:32:34
Original
1152 people have browsed it

thinkphp分表怎么使用
我预设了10个表 分别是 table_1、table_2、table_3....table_10
在Model中设置了partition:
protected $partition = array(
'field' => 'id',
'type' => 'id',
'expr' => '',
'num' => 10,
);
也使用了getPartitionTableName()
官方文档说是必须传入当前的数据。然后根据数据分析应该实际操作哪个数据表
而这个传入当前数据是什么数据,, 我每次实验的结果都是联合查询!不能找到当前表名!
请高手帮帮忙!或者有什么合适的方法!

thinkphp 分表 partition
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