mysql> SELECT COUNT(profile_id) FROM mc_profiles WHERE profile_characterSex = '0' and profile_RLSex = '0';
+-------------------+
| COUNT(profile_id) |
+-------------------+
| 6 |
+-------------------+
1 row in set (0.00 sec)
mysql> SELECT COUNT(profile_id) FROM mc_profiles WHERE profile_characterSex = '0
' and profile_RLSex = '1';
+-------------------+
| COUNT(profile_id) |
+-------------------+
| 4 |
+-------------------+
1 row in set (0.00 sec)
mysql> SELECT COUNT(profile_id) FROM mc_profiles WHERE profile_characterSex = '1' and profile_RLSex = '0';
+-------------------+
| COUNT(profile_id) |
+-------------------+
| 0 |
+-------------------+
1 row in set (0.00 sec)
mysql> SELECT COUNT(profile_id) FROM mc_profiles WHERE profile_characterSex = '1' and profile_RLSex = '1';
+-------------------+
| COUNT(profile_id) |
+-------------------+
| 23 |
+-------------------+
1 row in set (0.00 sec)
Translation for you lazy people: 4 males play female characters (one being me!), 6 females play female characters, 0 females play male characters and 23 males play male characters.