如何将2个列表转换为二维数组!
我打算在二维数组中存储链接和值,并从for循环或每个循环中读取。 我试过这样做但失败了,非常感谢你的帮助。
有多种方法可以做,但我打算学习如何存储在二维数组中,
update catalog_product_entity_text
set `value` = CONCAT((select `value` from catalog_product_entity_text
where entity_id in (select product_id from catalog_category_product where category_id = 571) and attribute_id = 551), `value`)
where entity_id in (select product_id from catalog_category_product where category_id = 975)
and attribute_id = 57;
答案 0 :(得分:0)
int[][] arrays = lst.Select(a => a.ToArray()).ToArray();