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
LFA TV
13 hours agoLIVE & BREAKING NEWS! | WEDNESDAY 10/8/25
4,201 watching -
LIVE
The Mel K Show
1 hour agoMORNINGS WITH MEL K -Lobbyists and Greed have Replaced the Will of We the People 10-8-25
597 watching -
LIVE
The Shannon Joy Show
50 minutes agoGold Surge Persists Signaling Recession, More Inflation & Potential War - Live W/ Peter Schiff!
175 watching -
LIVE
Grant Stinchfield
1 hour agoThe People Have Spoken: Trump Rising, Democrats Reeling
87 watching -
LIVE
Trumpet Daily
1 hour agoTrumpet Daily LIVE | Oct 8, 2025
157 watching -
LIVE
Outspoken with Dr. Naomi Wolf
59 minutes ago"October 7: Israel, with all its Flaws, isn't Making me a Zionist. Anti-Semitism Is."
34 watching -
1:56:24
Benny Johnson
2 hours ago🚨James Comey in Court LIVE Right Now on Criminal Charges | Portland Anarchy Against ICE EXPOSED
22.9K59 -
1:01:01
VINCE
4 hours agoThe Next CA Governor May Be MUCH Worse Than Newsom | Episode 142 - 10/08/25
156K130 -
LIVE
Side Scrollers Podcast
2 hours agoTwitch CEO Testifies in Congress + Hasan Piker Accused of DOG Abuse + More | Side Scrollers
654 watching -
1:10:41
MYLUNCHBREAK CHANNEL PAGE
2 hours agoBuildings That Shouldn’t Be Here
13.6K9