Premium Only Content
Java Spring Boot [Mid 2024] Part 9: Relational Mappings
*******************OneToOne*******************
CREATE TABLE address (
id BIGINT PRIMARY KEY AUTO_INCREMENT,
street VARCHAR(255),
city VARCHAR(255),
state VARCHAR(255)
);
CREATE TABLE customer (
id BIGINT PRIMARY KEY AUTO_INCREMENT,
first_name VARCHAR(255),
last_name VARCHAR(255),
address_id BIGINT,
FOREIGN KEY (address_id) REFERENCES address(id)
);
INSERT INTO address (street, city, state) VALUES ('123 Main St', 'Cityville', 'CA');
INSERT INTO customer (first_name, last_name, address_id) VALUES ('John', 'Doe', 1);
*******************OneToMany*******************
ALTER TABLE address
ADD COLUMN customer_id BIGINT,
ADD CONSTRAINT fk_customer
FOREIGN KEY (customer_id)
REFERENCES customer (id);
UPDATE address
SET customer_id = (SELECT id FROM customer WHERE id = address.id);
INSERT INTO customer (first_name, last_name) VALUES ('Jane', 'Smith');
INSERT INTO address (street, city, state, customer_id) VALUES
('789 Pine St', 'CityC', 'SC', 1),
('101 Elm St', 'CityD', 'SC', 2);
ALTER TABLE customer
DROP FOREIGN KEY customer_ibfk_1;
ALTER TABLE customer
DROP COLUMN address_id;
******************ManytoMany*******************
CREATE TABLE customer_address (
customer_id BIGINT,
address_id BIGINT,
PRIMARY KEY (customer_id, address_id),
FOREIGN KEY (customer_id) REFERENCES customer(id),
FOREIGN KEY (address_id) REFERENCES address(id)
);
INSERT INTO customer_address (customer_id, address_id)
SELECT customer_id, id as address_id
FROM address;
ALTER TABLE address
DROP FOREIGN KEY fk_customer;
ALTER TABLE address
DROP COLUMN customer_id;
-
2:14:15
DLDAfterDark
4 hours ago $1.18 earnedThe AR15 BurnDown That Will Leave You Speechless!
27.6K1 -
1:48:12
megimu32
4 hours agoON THE SUBJECT: Throwback Thursday | Wheel of Nostalgia Chaos!
27.1K9 -
2:32:11
Flyover Conservatives
1 day agoTrojan Horse in the Big Apple? Prophetic Warning w/ Robin D. Bullock | FOC Show
32.6K11 -
1:31:48
Precision Rifle Network
1 day agoS5E6 Guns & Grub - The Boys Are Back!
15.5K8 -
4:29:29
SynthTrax & DJ Cheezus Livestreams
4 days agoLumines - Arise - DJ Cheezus Birthday Stream
23.1K2 -
1:00:41
Glenn Greenwald
9 hours agoEXCLUSIVE: Succession Actress & Podcast Host Dasha Nekrasova Speaks Out About Hollywood Cancellation Over Fuentes Interview | SYSTEM UPDATE #549
123K110 -
31:27
Robbi On The Record
11 hours ago $2.73 earnedWhat the Bible say about Astrology.. The Conversation Culture Has Been Avoiding | ft. JT Follows JC
25.7K5 -
2:58:45
SOLTEKGG
5 hours ago🟢 Live: Pro Player Returns to Battlefield 6 RED SEC
12.7K -
2:16:25
XDDX_HiTower
4 hours ago $1.02 earnedGray Zone Warfare [RGMT CONTENT Mgr. | RGMT GL | GZW CL]
12K -
1:06:20
BonginoReport
8 hours agoTrump, Vance “SNUBBED” by Never-Trumper Cheneys - Nightly Scroll w/ Hayley Caronia (Ep.182)
81K46