Advertisement
Dodma

Untitled

May 21st, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. SELECT
  2. name,
  3. CASE
  4. WHEN weight IS NULL AND units = '%' THEN 72
  5. WHEN weight IS NULL AND units = 'кг' THEN 1
  6. WHEN weight IS NULL AND units = 'л' THEN 1
  7. WHEN weight IS NULL AND units = 'мл' THEN 805
  8. WHEN weight IS NULL AND units = 'г' THEN 402
  9. ELSE weight END AS weight_info
  10. FROM
  11. products;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement