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.
是否有一种“蛋糕”方式来重现 mysql“从选择中插入”行为?我想从一个模型中获取值并插入另一个模型,而不将所有数据检索到我的应用程序,因为有大量数据的表会导致内存限制错误。
Ex: $this->model1->saveAll($this->model2->find());
仅使用 Cake 语法是无法实现的。最好的方法是使用$this->model->query()并在里面编写你自己的查询。