如何跳过重复的值,而从我的sql数据库抓取



我有一个问题。我正在从MYSQL表中获取一些数据。但是有一些重复的数据。我需要跳过那些重复的数据。我在下面解释我的代码。

session_start();
$postdata = file_get_contents("php://input");
$request = json_decode($postdata);
$colg_id=1;
$dept_id = $_SESSION["admin_dept_id"];
$user_id=$_SESSION["admin_id"];
$connect = mysqli_connect("localhost", "root", "******", "go_fasto");
$result = mysqli_query($connect, "select plan_id,unit_name  from db_unit_plan where dept_id='".$dept_id."'  and user_id = '".$user_id."'   ");
while ($row =mysqli_fetch_assoc($result)) {
  $data[] = $row;
}
    print json_encode($data);

这里我需要如果任何unit_name列有相同类型的数据,那么如何跳过这些行。

像这样修改为DISTINCT

$result = mysqli_query($connect, "select DISTINCT unit_name,plan_id  from db_unit_plan where dept_id='".$dept_id."'  and user_id = '".$user_id."'   ");

必须指定'DISTINCT'关键字才能从SQL中获得唯一的结果。所以试着把你的select语句改成$result = mysqli_query($connect, "select DISTINCT plan_id .. ");

好运。

最新更新