Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SELECT CountryName, CountryCode,
- Currency=CASE
- WHEN CurrencyCode='EUR' THEN 'Euro'
- WHEN CurrencyCode<>'EUR' THEN 'Not Euro'
- END
- FROM Countries
- ORDER BY CountryName ASC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement