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;
-
2:51:25
The Pascal Show
5 hours ago $1.71 earnedBREAKING! Active Shooter In Midtown Manhattan NYC Multiple People Shot!
19.3K3 -
10:25
MattMorseTV
10 hours ago $11.42 earnedVance just DROPPED a NUKE.
38.8K43 -
5:05:09
Jokeuhl Gaming and Chat
7 hours agoDARKTIDE - Warhammer 40k w/ Nubes and AoA
17.2K2 -
2:53:08
Shoriantrax
4 hours agoLIVE: Hardcore Chaos in Tarkov – Loot, Die, Repeat!
10.3K -
DVR
John_Goetz
4 hours agoJohn Gets Gaming - Medal of Honor Vanguard Part 2
6.87K -
1:29:09
RiftTV
6 hours agoSydney Sweeney Spreading RACIST Propaganda? | The Rift | Guest: Braeden Sorbo + Sarah Stock
38.9K10 -
4:08:44
VapinGamers
5 hours ago $0.02 earnedDestiny 2 - The Premium Destiny 2 Experience with the Community! - !rumbot !music
3.6K -
2:36:01
We Like Shooting
18 hours ago $0.31 earnedWe Like Shooting 621 (Gun Podcast)
3.03K -
2:06:45
PudgeTV
10 hours ago🔵 Mod Mondays Ep 69 | Grimm Hollywood - The 3k on Mod Mondays
13.9K3 -
2:15:00
megimu32
5 hours agoOTS: Happy Place or Missed Shot? Happy Gilmore 2 Review
18K4