gpt4 book ai didi

php - mySQL 查询从 1 个数据库 PHP 的 2 个表中检索相关信息

转载 作者:行者123 更新时间:2023-11-30 23:04:52 28 4
gpt4 key购买 nike

我正在尝试从同一数据库 (mySQL) 中的 2 个表中检索数据。我曾尝试使用 INNER JOIN,但我意识到用于 SELECT 条目的 WHERE 在两个表上都不相同,即 .. 属性上的 id 与报告上的 id 不同,所以我无法告诉查询获取第二张表的准确信息(我认为是正确的)

无论如何。以下是我的查询。有人可以告诉我实现正确执行此操作并填充所有这些字段所需的结果的最佳方法吗?

干杯

<?php session_start();

header('Content-type: application/json');

require_once('DbConnector.php');

$connector = new DbConnector();

$customerid = '125';

$sql=( "SELECT DISTINCT reports.id, properties.title, reports.title, reports.date, reports.link FROM reports JOIN properties ON reports.visible = properties.customer WHERE properties.customer ='".$customerid."'" )or die( mysql_error("FAIL!!") );
$result = mysql_query($sql);
while($data = mysql_fetch_assoc($result)) {
$output[] = $data;
}
echo json_encode($output);
?>

最佳答案

试试这个

<?php session_start();

header('Content-type: application/json');

require_once('DbConnector.php');

$connector = new DbConnector();

$customerid = '125';

$sql=( "SELECT DISTINCT reports.id, properties.title, reports.title, reports.date, reports.link FROM reports JOIN properties ON reports.visible = properties.visible WHERE properties.customer = '$customerid' " )or die( mysql_error("FAIL!!") );
$result = mysql_query($sql);
while($data = mysql_fetch_assoc($result)) {
$output[] = $data;
}
echo json_encode($output);
?>

关于php - mySQL 查询从 1 个数据库 PHP 的 2 个表中检索相关信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22317647/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com