Created
November 21, 2012 10:29
-
-
Save waveform80/4124157 to your computer and use it in GitHub Desktop.
LEAST alternative
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CASE WHEN ContractPrice < DiscountPrice | |
THEN | |
CASE WHEN ContractPrice < ListPrice THEN ContractPrice ELSE ListPrice END | |
ELSE | |
CASE WHEN DiscountPrice < ListPrice THEN DiscountPrice ELSE ListPrice END | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment