What is the diffrence between these two sql qry?
please tell me the diff
select supplier.sup_id from supplier,product where supplier.sup_id=product.sup_id
order by supplier.sup_id
select supplier.sup_id from supplier,product where supplier join product
supplier.sup_id=product.sup_id
order by supplier.sup_id