请将此较旧的内部查询转换为新的内部联接查询。
"SELECT m.*, s.*, pt.* FROM tbl_mcate m, tbl_scate s, tbl_producttype pt where pt.scate_id=s.scate_id and m.mcate_id=s.mcate_id";
答案 0 :(得分:0)
简单的一个:
SELECT m.*, s.*, pt.*
FROM tbl_mcate m
inner join tbl_scate s on m.mcate_id=s.mcate_id
inner join tbl_producttype pt on pt.scate_id=s.scate_id