我正在使用这个查询:
SELECT a.sales_id, d.bus_title, a.cat_id
FROM tbl_sales a
INNER JOIN tb_category b ON a.cat_id = b.cat_id
INNER JOIN tbl_business d ON d.bus_id = a.bus_id
产生这个结果:
sales_id | bus_title |cat_id
----------|----------------|------------
1 | Business 1 | 6
2 | Business 12 | 12
3 | Business 123 | 25
我将字段 cat_id 更改为一个名为的新表tb_sales_category
,其中包含字段sales_category_id
, sales_id
, cat_id
。我怎样才能通过加入这个表来编写新的查询,得到与上面相同的结果?
我是数据库的新手,需要帮助。提前致谢