我想从字段中检索多行:
$query1 = "SELECT LocationCode FROM location";
$query1result = sqlsrv_query($conn, $query1);
$i= 0;
while($rows = sqlsrv_fetch_array($query1result)) {
$data1[$i] = $rows["LocationCode"];
$i++;
}
var_dump($data1);
输出仅作为单个值。
我需要多个值。