Data Archive
- Data Archive 6.4.3 HotFix 1
- All Products
SELECT item, IFNULL(price, -1) AS Price FROM inventory;
SELECT item, CASE WHEN price IS NOT NULL THEN price ELSE -1 END AS Price FROM inventory;