我的'选择DISTINCT'无法正常工作

时间:2015-08-13 09:19:47

标签: php html mysql distinct

我尝试使用数据库中的一些值填充下拉菜单。 使用'Select DISTINCT'之后,我的数据库中没有检索到所有数据。

这是我的PHP代码

$_GET['selectedVal']

这是我的HTML代码

<?
   $sqlretrive = mysql_query("Select DISTINCT type from 
             tb_shuffle_table where status = 1 and user_id = $user_id");
   $rows = mysql_fetch_array($sqlretrive)
?>

{这是我的数据库表} 1

1 个答案:

答案 0 :(得分:1)

根据您的评论,如果select distinct type ...过滤掉了1,那么很容易理解特定记录与您提供的WHERE条件不匹配如下所示。

where status = 1 and user_id = $user_id