SELECT (DATEPART(day, Order Date) - DATEPART(day, Shipped Date))
FROM Orders
WHERE OrderID = '10248'
-- Without a unary operator, the value returned is '-12'.
SELECT +(DATEPART(day, Order Date) - DATEPART(day, Shipped Date))
FROM Orders
WHERE OrderID = '10248'
-- With the positive unary operator, the value returned is '-12'.
SELECT -(DATEPART(day, Order Date) - DATEPART(day, Shipped Date))
FROM Orders
WHERE OrderID = '10248'
-- With the negative unary operator, the value returned is '12'.