gpt4 book ai didi

php - Grocery CRUD 连接表

转载 作者:行者123 更新时间:2023-11-29 05:31:53 25 4
gpt4 key购买 nike

需要一些帮助来建立产品和数量之间的关系。

Table1: Products
Columns: id , code, unit, name, size , cost , price

-

Table2: qty_products
Columns: id , product_id , warehouse_id , quantity

此处产品之间的关系是productsidqty_productsproduct_id

这个结果的一个简单查询是:

SELECT p.id, p.code, p.unit, p.name, p.size, p.cost, p.price, s.quantity, s.warehouse_id FROM products p
INNER JOIN qty_products s ON s.product_id = p.id

我需要将此结果转换为 Grocery CRUD。

function products()
{
$crud = new grocery_CRUD();
$crud->set_table('products');
$crud->set_relation('column','table','column');
$output = $crud->render();
$this->_products($output);
}

感谢任何帮助。

最佳答案

不可能直接执行此操作,如 forum post 中所述作者:

Actually perhaps it seems obvious to grocery CRUD to have joins and customs queries to the table, but it still NOT an available feature at this moment.

他的建议是使用 set_model函数,它允许通过扩展 grocery_CRUD_Model 来执行所需的 SELECT/JOIN。

关于php - Grocery CRUD 连接表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14022501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com