CREATE TABLE accounts(
account_id INT NOT NULL AUTO_INCREMENT,
customer_id INT( 4 ) NOT NULL ,
account_type ENUM( 'savings', 'credit' ) NOT NULL,
balance FLOAT( 9 ) NOT NULL,
PRIMARY KEY ( account_id )
)
and
CREATE TABLE customers(
customer_id INT NOT NULL AUTO_INCREMENT,
name VARCHAR(20) NOT NULL,
address VARCHAR(20) NOT NULL,
city VARCHAR(20) NOT NULL,
state VARCHAR(20) NOT NULL,
)
How do I create a 'relationship' between the two tables? I want each account to be 'assigned' one customer_id (to indicate who owns it).
คุณต้องถามตัวเองว่านี่คือความสัมพันธ์แบบ 1 ต่อ 1 หรือ 1 จากความสัมพันธ์มากมาย นั่นคือทุกบัญชีมีลูกค้าหรือไม่และลูกค้าทุกคนมีบัญชี หรือจะมีลูกค้าที่ไม่มีบัญชี คำถามของคุณมีนัยอย่างหลัง
หากคุณต้องการมีความสัมพันธ์แบบ 1 ต่อ 1 ที่เข้มงวดเพียงแค่รวมสองตาราง
CREATE TABLE customers(
customer_id INT NOT NULL AUTO_INCREMENT,
name VARCHAR(20) NOT NULL,
address VARCHAR(20) NOT NULL,
city VARCHAR(20) NOT NULL,
state VARCHAR(20) NOT NULL,
account_type ENUM( 'savings', 'credit' ) NOT NULL,
balance FLOAT( 9 ) NOT NULL,
)
ในอีกกรณีหนึ่งวิธีที่ถูกต้องในการสร้างความสัมพันธ์ระหว่างสองตารางคือการสร้างตารางความสัมพันธ์
CREATE TABLE customersaccounts(
customer_id INT NOT NULL,
account_id INT NOT NULL,
PRIMARY KEY (customer_id, account_id)
FOREIGN KEY customer_id references customers (customer_id) on delete cascade,
FOREIGN KEY account_id references accounts (account_id) on delete cascade
}
จากนั้นหากคุณมี customer_id และต้องการข้อมูลบัญชีคุณจะเข้าร่วมในบัญชีลูกค้าและบัญชี:
SELECT a.*
FROM customersaccounts ca
INNER JOIN accounts a ca.account_id=a.account_id
AND ca.customer_id=mycustomerid;
เนื่องจากการจัดทำดัชนีนี้จะรวดเร็วอย่างไม่น่าเชื่อ
คุณยังสามารถสร้าง VIEW ซึ่งให้ผลของตารางบัญชีลูกค้ารวมกันในขณะที่แยกพวกเขาออกจากกัน
CREATE VIEW customeraccounts AS
SELECT a.*, c.* FROM customersaccounts ca
INNER JOIN accounts a ON ca.account_id=a.account_id
INNER JOIN customers c ON ca.customer_id=c.customer_id;