请问下 多个表内联接 那么最后显示的是哪一部分范围的数据呢
mysql> SELECT goods_id,goods_name,cate_name,brand_name,goods_price FROM tdb_goods AS g -> INNER JOIN tdb_goods_cates AS c ON g.cate_id = c.cate_id -> INNER JOIN tdb_goods_brands AS b ON g.brand_id = b.brand_id\G
老师这里写了一个g 然后分别INNER JOIN 了 c 和b
那么这个范围应该是 g表的全部和 c表符合条件的数据 + b表复合条件的数据 是这个范围吗 麻烦解释一下 多谢