<?php
$sql="Select * From $tb1
Inner Join $tb2 ON $tb1.fild(ที่ต้องการ1) = $tb2.fild(ที่ต้องการ1)
Inner Join $tb3 ON $tb1.fild(ที่ต้องการ2) = $tb3.fild(ที่ต้องการ2)";
?>
2. แบบนี้ครับ Code (PHP)
<?php
$sql="Select * From $tb1,$tb2,$tb3 where ($tb1.fild(ที่ต้องการ1))= ($tb2.fild(ที่ต้องการ1))
AND ($tb1.fild(ที่ต้องการ2))= ($tb3.fild(ที่ต้องการ2))
?>