Created
June 13, 2017 20:23
-
-
Save jbaxleyiii/e6fba9e80e1886964ba9bafc927ca171 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
SELECT COUNT(*) | |
FROM [FinancialPersonSavedAccount] FPA | |
JOIN [FinancialPaymentDetail] FP | |
ON FPA.FinancialPaymentDetailId = FP.Id | |
WHERE | |
FP.CurrencyTypeValueId = 156 | |
AND FPA.FinancialGatewayId = 3 | |
AND FP.CreditCardTypeValueId = null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment