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'
这会引发语法错误。有关如何解决此问题的任何建议。谢谢。
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'
这会引发语法错误。有关如何解决此问题的任何建议。谢谢。