从我的查询中的3个表中选择的最佳方法

时间:2018-04-04 08:00:19

标签: php mysql

我有三张表,其中包含以下条款。请指导我 从他们那里获得最佳选择过程

  • 我的桌子:

     player :  |  id  |  status  |  credit  |  userid  |   showtime  |
    
     player_log :  |  srl  |  ip  |  date  | 
    
     player_stat :  |  srl  |  stat  |  date  |
    

有一个玩家详细信息表,另外两张表记录了他的活动。

我应该选择一位之前没有参加比赛的球员,他的数据不会高于我正在考虑的数据。

玩家ID保存在srl中,$ uid是禁止用户一天

  • 具有以下条件的玩家应该

    status=11 and credit>=$20 and            
    userid NOT LIKE $uid and            
    (showtime=$hgroup or showtime=0)
    
  • 从结果
  • 中删除具有这些条件>的玩家

条件1

player_log.srl=player.id and     
player_log.ip=$ip and    
player_log.date=$date

条件2

player_stat.srl=player.id and       
player_stat.stat>=$dailylimit and   
player_stat.date=$date

0 个答案:

没有答案