select * from
invoices, clients
where
invoices.id = clients.id
| The benefit of this join in the example, is that it will retrieve all of the information from both the invoices and clients tables wherever an invoices.id = clients.id. In short result set will return a value if there's an exact match or the conditions are correct
|