I have two queries:
$query = mysql_query("SELECT ord.orderID, customers.CustomerName,       
                      FROM ord, customers
                      WHERE customers.CustomerSalary=ord.orderID");
and
$query = mysql_query("SELECT ord.orderID, customers.CustomerName, 
                      FROM ord
                      INNER JOIN customers
                      ON customers.CustomerSalary=ord.orderID");
This queries return the same result. What is different between them.
 
     
    