我想在单个查询中将两个数组的值插入到表中。有没有可能做这样的事情。
表格格式
id | product_id | category_id | blog_id | updated_by | created_date
类别_id
Array
(
[0] => 4
[1] => 15
[2] => 18
)
Product_id
Array
(
[0] => 2260
[1] => 1401
)
Blog id = mysql_insert_id();
结果
id | product_id | category_id | blog_id | updated_by
1 2260 4 15 xyz
2 1401 15 15 xyz
3 null 18 15 xyz
对我的任何建议也可以为此改进更好的插入查询。