簡體   English   中英

如何查詢外鍵並獲取相應的行

[英]how to query for foreign key and get corresponding rows

我的PHP查詢有問題。 我只需要在列表視圖中獲取被點擊患者的處方即可。

這是處方的表格結構。

在此處輸入圖片說明

在此處輸入圖片說明

我需要ID為79的患者才能顯示他所有的相應處方。 請幫我。

這是PHP。

<?php

/*
 * Following code will list all the products
 */

// array for JSON response
$response = array();


// include db connect class
require_once __DIR__ . '/db_connect.php';

// connecting to db
$db = new DB_CONNECT();

if (isset($_GET["uid"])) {
    $uid = $_GET['uid'];

// get all products from products table

$result = mysql_query("select * from prescription") or die(mysql_error());

// check for empty result
if (mysql_num_rows($result) > 0) {
    // looping through all results
    // products node
    $response["prescription"] = array();

    while ($row = mysql_fetch_array($result)) {
        // temp user array
        $prescription = array();
        $prescription["pres_id"] = $row["pres_id"];
        $prescription["pres_name"] = $row["pres_name"];
        //$product["price"] = $row["price"];


        // push single product into final response array
        array_push($response["prescription"], $prescription);
    }
    // success
    $response["success"] = 1;

    // echoing JSON response
    echo json_encode($response);
} else {
    // no products found
    $response["success"] = 0;
    $response["message"] = "No prescriptions found";

    // echo no users JSON
    echo json_encode($response);
    } 
}else {
    $response["success"] = 0;
    $response["message"] = "Required field(s) is missing";

    // echoing JSON response
    echo json_encode($response);
}
    }
?>

要獲得所選患者的所有處方,不是嗎:

mysql_query("select * from prescription where patient_user_fkey = '$patientID'")or die(mysql_error());

代替:

mysql_query("select * from prescription") or die(mysql_error());

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM