我有3个表城市,产品和 product_city_mapping 。
在产品表格中,我有 500 记录,我需要使用product
创建每个city
记录与product_city_mapping
的映射。
我有没有办法在MySQL中编写SQL查询,在product_city_mapping
中为我创建记录?
我需要在product_city_mapping
中为所有产品行添加条目,并将CityId
添加为 1 。
例如,在product_city_mapping
中需要这样的记录:
Id CityId ProductId
1 1 101
2 1 102
3 1 103
4 1 104
.. .. ...