SQL Select * from multiple tables(SQL 从多个表中选择 *)
问题描述
使用 PHP/PDO/MySQL 是否可以在对多个表进行选择并且返回的数组键是完全限定的以避免列名冲突时对列使用通配符?
Using PHP/PDO/MySQL is it possible to use a wildcard for the columns when a select is done on multiple tables and the returned array keys are fully qualified to avoid column name clash?
示例:
SELECT * from table1, table2;
给出:
数组键是'table1.id'、'table2.id'、'table1.name'等
Array keys are 'table1.id', 'table2.id', 'table1.name' etc.
我尝试了SELECT table1.*,table2.* ...",但返回的数组键不是完全限定的,因此具有相同名称的列发生冲突并被覆盖.
I tried "SELECT table1.*,table2.* ..." but the returned array keys were not fully qualified so columns with the same name clashed and were overwritten.
推荐答案
是的,你可以.最简单的方法是使用 pdo,尽管至少有一些其他扩展可以使用它.
Yes, you can. The easiest way is with pdo, although there's at least a few other extensions which are capable of it.
在 PDO 对象上设置属性,而不是 PDOStatment.
Set the attribute on the PDO object, not the PDOStatment.
$PDO->setAttribute(PDO::ATTR_FETCH_TABLE_NAMES, true);
就是这样.然后你会得到像 $row['myTable.myColumn']
这样的关联数组键.如果您也获取对象(例如通过 PDO::FETCH_OBJECT
),它也可以工作,所以要小心,因为您需要访问像 $obj->{'myTable.myColumn'}<这样的属性/代码>
That's it. Then you get associative array keys like $row['myTable.myColumn']
. It works if you fetch an object too (eg via PDO::FETCH_OBJECT
) so beware, because you need to access the properties like $obj->{'myTable.myColumn'}
*手册说 PDO::ATTR_FETCH_TABLE_NAMES
属性仅受某些驱动程序支持.如果上述方法不起作用,则可能可以代替.
*The manual says the PDO::ATTR_FETCH_TABLE_NAMES
attribute is only supported by certain drivers. If the above doesn't work, this might work instead.
$pdoStatement->setFetchMode(PDO::FETCH_NUM);
$pdoStatement->execute();
//build our associative array keys
$qualifiedColumnNames = array();
for ($i = 0; $i < $pdoStatement->columnCount(); $i++) {
$columnMeta = $pdoStatement->getColumnMeta($i);
$qualifiedColumnNames[] = "$columnMeta[table].$columnMeta[name]";
}
//fetch results and combine with keys
while ($row = $pdoStatement->fetch()) {
$qualifiedRow = array_combine($qualifiedColumnNames, $row);
print_r($qualifiedRow);
}
<小时>
相同的基本模式用于其他数据库扩展
Same basic pattern is used for other database extensions
$res = mysql_query($sql);
//build our associative array keys
$qualifiedColumnNames = array();
for ($i = 0; $i < mysql_num_fields($res); $i++) {
$columnMeta = mysql_fetch_field($res, $i);
$qualifiedColumnNames[] = "$columnMeta[table].$columnMeta[name]";
}
//fetch results and combine with keys
while ($row = mysql_fetch_row($res)) {
$qualifiedRow = array_combine($qualifiedColumnNames, $row);
print_r($qualifiedRow);
}
<小时>
mysqli
$res = $mysqli->query($sql);
//build our associative array keys
$qualifiedColumnNames = array();
foreach ($res->fetch_fields() as $columnMeta) {
$qualifiedColumnNames[] = "{$columnMeta->table}.{$columnMeta->name}";
}
//fetch results and combine with keys
while ($row = $res->fetch_row()) {
$qualifiedRow = array_combine($qualifiedColumnNames, $row);
print_r($qualifiedRow);
}
这也适用于表别名(在 php 7.1 中测试) - 限定列名将使用表别名.
This should also work with table aliases (tested in php 7.1) - the qualified column name will use the table alias.
这篇关于SQL 从多个表中选择 *的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL 从多个表中选择 *


基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01