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'

これは構文エラーをスローしています。これを修正する方法についてのアドバイス。ありがとう。

4

1 に答える 1

2

FROM 句がないため、使用するメイン テーブルがわかりません。

于 2012-06-12T15:46:36.613 に答える