Premium Only Content
![Java Spring Boot [Mid 2024] Part 9: Relational Mappings](https://1a-1791.com/video/s8/1/f/Q/Z/5/fQZ5s.qR4e-small-Java-Spring-Boot-Mid-2024-P.jpg)
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;
-
LIVE
The Chris Salcedo Show
11 hours ago $2.61 earnedIt's Time Justice Was Served
487 watching -
LIVE
Welcome to the Rebellion Podcast
12 hours ago $1.02 earnedWelcome to the Rebellion Podcast Live 10/7
213 watching -
19:37
Chris From The 740
12 hours ago $0.54 earnedIs the Aimwin PE320 Red Dot Sight the BEST OPTION for Your Pistol?
11.9K -
1:27:02
Game On!
16 hours ago $4.36 earnedThe GREATEST Monday Night Football Game OF ALL TIME!
27.6K4 -
18:02
Demons Row
23 hours ago $4.53 earnedI Rode Into the Most Feared Motorcycle Club in America 💀🔥
26.6K4 -
2:43
Blackstone Griddles
1 day agoWalking Tacos on the Blackstone Griddle
19.9K3 -
2:01:41
BEK TV
1 day agoTrent Loos in the Morning - 10/07/2025
15.9K -
LIVE
The Bubba Army
23 hours agoChicago Civil WAR? - Bubba the Love Sponge® Show | 10/07/25
1,224 watching -
4:33
The Official Steve Harvey
15 hours ago $2.33 earnedEvery time you thought it was over… it wasn’t...
22K1 -
3:07
NAG Daily
17 hours agoYour Inner Dialogue w/ GreenMan
18.7K2