I need help to create pivot table entries for all of the rows available in two separate tables, basically, I have two separate tables as services
and plans
as below
- plans table
id | name | description |
---|---|---|
1 | plan one | description for plan one |
2 | plan two | description for plan two |
- services table
id | name |
---|---|
1 | service one |
2 | services two |
and a pivot table service_plan
where I am storing the Id of the plan and service with an extra column to store the price as below.
id | service_id | plan_id | price |
---|---|---|---|
1 | 1 | 1 | 200 |
2 | 1 | 2 | 200 |
Now I just want a SQL query to assign all the services with all the available plans with a dummy price in it, so the service_plan
table will look something like this
id | service_id | plan_id | price |
---|---|---|---|
1 | 1 | 1 | 200 |
2 | 1 | 2 | 200 |
3 | 2 | 1 | 200 |
4 | 2 | 2 | 200 |
any help will be much appreciated, thanks.
Advertisement
Answer
As per your question i think this is the simplest query you can run to get your desired result.
insert into service_plan (service_id, plan_id, price) select s.id, p.id, 200 from services as s cross join plans as p