SQL INNER JOIN syntax

后端 未结 7 2178
夕颜
夕颜 2020-12-01 05:16

the two bits of SQL below get the same result

SELECT c.name, o.product  
FROM customer c, order o  
WHERE c.id = o.cust_id  
AND o.value = 150  

SELECT c.na         


        
7条回答
提交回复
热议问题