我想在 where 子句中添加多个值。
------------就像在 Sql 中,我们这样做------
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1,value2,...)
如何在杂货杂货中使用它?
我想在 where 子句中添加多个值。
------------就像在 Sql 中,我们这样做------
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1,value2,...)
如何在杂货杂货中使用它?
GroceryCrud 中的 WHERE 子句的工作方式与 codeigniter 的 WHERE 子句完全相同:
$this->db->where_in('columnname', $arrayvalues);
希望这对你有帮助,不要犹豫,问更多问题=)
GroceryCrud 文档在哪里
使用or_where
而不是where
.
例如
function example_with_or_where() {
$crud = new grocery_CRUD();
$crud->where('productName','Motorcycle');
$crud->or_where('productName','Car');
$crud->or_where('productName','Bicycle');
$crud->set_table('products');
$crud->columns('productName','buyPrice');
$output = $crud->render();
$this->_example_output($output);
}
详细在这里