Hmm... may I suggest using another relationship? Adding a table of nationalities that lists nations, then assign them your own IDs (not automatic) that follow this pattern:
1,2,4,8,16,32,64,128,256,512,1024,2048 . . .
Then you can use MySQL's Bitwise functions to select where COUNTRY_ID (64) | NATIONALITY.
For example:
| autoID | COUNTRY_ID | COUNTRY NAME |
+----------------------------------------+
| 1 | 1 | U.S.A. |
| 2 | 2 | Great Britain |
| 3 | 4 | Russia |
| 4 | 8 | France |
| 5 | 16 | Canada |
| 6 | 32 | Japan |
| 7 | 64 | Italy |
| 8 | 128 | Germany |
+----------------------------------------+
Now, when you have multiple countries, you take their COUNTRY_ID and add them together. So if you have British and French then you say:
Great Britain (2) + France (8) = 10. So "10" is now the "country" that the Jaguar belongs to.
So in your query, you'd query for any aircraft that had a nationality with bit 2 set in it, or bit 8 set, or both. In this case, you'd use the "&" operator:
SELECT IF($user_input & nationality, 1, 0) belongs, *
FROM `table`
WHERE belongs = 1
Or something of the sort. Not 100% sure it would work, but something like that should work.