从数据库中选择用户

时间:2012-01-14 16:42:56

标签: php mysql

$rs=mysql_query("select user.userName,usertype.userType from user,usertype where user.userTypeId=usertype.userTypeId");

此查询获取用户类型,有2种类型(用户和管理员)。所以我只需要看到简单的用户而不是管理员。怎么解决?数字1是管理员类型,数字2是简单用户。

1 个答案:

答案 0 :(得分:1)

如果没有看到您的架构,这几乎无法回答,但您可能希望做到这样的事情:

select user.userName, usertype.userType
  from user, usertype
  where user.userTypeId = usertype.userTypeId
    and usertype.role = 'user'