Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一个名为 demo 的表,现在需要像 demo1,demo2,demo3,....,demo10 一样对其进行分区
那么如何在 Yii2 上对表进行分区呢?
我可能知道应该在 Model.getTableName 中添加一个方法。
更改相关模型
tableName 函数返回表名
class YouModel extends \yii\db\ActiveRecord { public static function tableName() { return 'yourTableName' . $YourNumber ; } ......