I have a database with the fields: land, zone, domestic. And I want to get all this info out depending on what land the user chooses. So I figured I do this:
SELECT * FROM myDB WHERE land=Norway (Norway is a stored country).
But I get the error unknown column Norway. Is this because it cant find Norway or what seems to be the problem?