有关Not IN语法错误的Mysql问题

时间:2012-06-12 15:45:00

标签: mysql

select tf.Id,tf.Name,tf.LName,tf.Rank,tf.Category
where tf.Id not in (select fighter_id from tbl_player_fighter where league_id=91)
and  tf.Status ='1'

这会引发语法错误。关于如何解决这个问题的任何建议。感谢。

1 个答案:

答案 0 :(得分:2)

您缺少FROM子句,因此它不知道要使用的主表。