I have a table -> table_product_categories - "product_id", "category_id"
I want to add multiple product ids (that are in range) against each category. How can i do that?
I am using:
insert into table_product_categories values (11, 1);
insert into table_product_categories values (12, 1);
insert into table_product_categories values (13, 1);
Is there any way where we can achieve the same in single query?
Devesh