Fungsi SQL Bild
SELECT Name,
ABS(500 - ReorderPoint) ReorderPointDeviation
FROM production.Product
WHERE ABS(500 - ReorderPoint) > 200
Cautious Cottonmouth
SELECT Name,
ABS(500 - ReorderPoint) ReorderPointDeviation
FROM production.Product
WHERE ABS(500 - ReorderPoint) > 200