Hey All... I am little shaky on joins....
Question one... I am getting a can't executre reponse from this... Can anyone clarify or corret the syntax/logic?
<?php
$sql = " SELECT * FROM table1 , table2, table3
LEFT JOIN vxuid ON table1.vxuid=table3.vxuid
LEFT JOIN ctst ON table1.ctst=table2.ctst
WHERE ($id=table1.pid)";
?>
Question TWO is is better to NOT have duplicate data (other than key fields) in multiple tables and focus more on bring what I want in with joins?