Process Flow - Table relationships
Create Table A
Create Table B
Define Foreign Key in B referencing A
Insert Data in A
Insert Data in B with reference to A
Query Join: B JOIN A on Foreign Key
Result: Combined Data from A and B
This flow shows how two tables are created, linked by a foreign key, and then queried together to combine related data.