我有2張桌子。我的表結構是這樣的:任何人都可以幫助我在這裏做什麼?
Table 'customer'
(
cust_id (PK),
cust_name,
cust_balance
);
and Table 'account'
(
acc_id (PK),
cust_id(FK) --relating to customer table
);
客戶數據:
name cust_id
scott c100
ford c200
帳戶數據:
scott personal a100
scott joint a300
ford personal a200
ford joint a300
那麼什麼會在帳戶表的cust_id列的值?如果我輸入斯科特的身份證,那麼在查詢時會顯示只有斯科特有2個賬戶,但事實並非如此,福特也有2個賬戶。那麼,我該如何做到這一點?
你到底想達到什麼目的?您是否想要爲每位客戶計算帳戶數量?你說你「輸入」斯科特的身份證,然後找回斯科特的兩個賬戶,當通過斯科特身份證查詢賬戶時,這不是期望的結果嗎? –