【发布时间】:2015-10-22 17:06:40
【问题描述】:
我有一个问题。我正在从 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 列具有相同类型的数据,那么如何跳过这些行。请帮助我。
【问题讨论】:
-
也许使用
SELECT DISTINCT? -
就像 rMX 说的,看看SELECT DISTINCT
-
选择plan_id,distinct(unit_name) ?不确定,但试试看