Musisz zapytać information_schema
aby uzyskać nazwy kolumn tych dwóch tabel. Załóżmy, że masz cd
nazwy kolumn przechowywane w tablicy $cd_columns
i cd_n
nazwy kolumn w tablicy $cdn_columns
.
Następnie w PHP podczas tworzenia pętli zapytań przez tablice kolumn i wykonaj coś takiego:
$sql = 'SELECT ';
// add the cd columns
$i = 0;
foreach($cd_columns as $col) {
$sql .= "{$col} AS CD_Column{$i},";
$i++;
}
// add the cd_n columns
$i = 0;
foreach($cdn_columns as $col) {
$sql .= "{$col} AS CN_Column{$i},";
$i++;
}
// remove the trailing comma
$sql = trim($sql, ',');
// continue the SQL
$sql .= ' FROM ...';
Czy to było pomocne?