I think you need to rethink your table structure. Having member_1, member_2, member_3, member_4 is just going to cause more problems in the long run. Especially when your trying to relate data.
I'd propose you have the chars table like it is.
Keep the "special" table, but move the members into their own table and relate them to the special table by the id.
so for members you'd have
special_id, member
Now you can use an inner join and get all the data you want.