Advertisement
svetlyoek

Untitled

Sep 23rd, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. SELECT CountryName,
  2. CountryCode,
  3. CASE
  4. WHEN CurrencyCode = 'EUR'
  5. THEN 'Euro'
  6. ELSE 'Not Euro'
  7. END AS [Currency]
  8. FROM Countries
  9. ORDER BY CountryName;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement