使用 Medoo PHP 数据库框架并尝试进行连接
$users = $db->select(
'users',
[
'[>] tournaments_users' =>
[
'tournaments_users.user_id' => 'users.uid'
]
], [
'users.uid',
'users.name',
'users.modifier',
'users.handicap',
'tournaments_users.tournament_id'
], [
'tournaments_users.tournament_id' => 1
'ORDER' => 'users.username ASC'
]
);
foreach( $users as $u) {
echo $u['name'].'<br>';
}
选择导致为 foreach() 提供的参数无效。
从 column- 和 where- 部分中删除 'tournaments_users.tournament_id' 会使查询工作,但不会显示正确的数据。
为什么查询无效?