标签: 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'
这会引发语法错误。关于如何解决这个问题的任何建议。感谢。
答案 0 :(得分:2)
您缺少FROM子句,因此它不知道要使用的主表。