我有三张表,其中包含以下条款。请指导我 从他们那里获得最佳选择过程
我的桌子:
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