我需要帮助为 codeigniter 编写数据库模型。我有 2 张桌子。首先,我保存了所有产品,在第二个表中,我有产品 ID 和类别 ID。因此,例如:
餐桌用品
t-shirt with ID 1
polo shirt with ID 2
表类别
shirts with ID 5
表产品_cat
product_id category_id ---------- ------------ 1 5 2 5
我如何编写模型来获取所有产品及其信息,使用表格protucts_cat
并获取它->result()
?