我正在尝试使用 where 子句选择两个表,
问题:我得到超过 2 个结果。像123451111
我只有两个值为 1 的 id。我认为我做错了。
这些表没有相同的结构,并且没有任何关联。有任何想法吗?
<?php include_once("config.php");
$s = '1';
$stmt =$mydb->prepare("select * FROM table1,table2 where table1.id = ? or table2.id = ?");
stmt->bind_param('ss', $s, $s);
echo $mydb->error;
$stmt->execute();
?>
<?php
$results = $stmt->get_result();
while ($row = $results->fetch_assoc()) {
echo $row['id']."<br/>";
}
?>