0
結合這三個查詢在一行我有這些Postgres的SQL中,是在某些while
環之間:Postgres裏
while (.......) {
...
$runStatement = 'update products set abc = "'.data[0].'" where abc = "'.data[1].'";';
...
}
while (.......) {
...
$runStatement = 'update products set xyz = "'.data[0].'" where xyz = "'.data[1].'";';
...
}
while (.......) {
...
$runStatement = 'update extra_products set abc = "'.data[0].'" where abc = "'.data[1].'";';
...
}
,其中每個循環,data
實際上是從相同的陣列讀取。
謝謝。