-2
我該如何編寫一個代碼,我想選擇customer_id比他大的客戶的姓名和地址。非常感謝你。SQL代碼不起作用
我該如何編寫一個代碼,我想選擇customer_id比他大的客戶的姓名和地址。非常感謝你。SQL代碼不起作用
select c.name,a.adress,a.postcode_id from customer c left join Adress a on c.customer_id=a.customer_id where c.customer_id>11
SELECT cs.name,ad.adress
FROM Customer cs, Adress ad
WHERE cs.customer_id=ad.customer_id
AND cs.customer_id>11;
非常感謝本Kathir。 –