Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. {
  2. "PartnerName": null,
  3. "PartnerCurrencyCode": "UAD",
  4. "PricingConditions": [
  5. {
  6. "PricingConditionId": 659853,
  7. "ConditionTypeCode": "ABCD",
  8. "ConcessionItemTypeCode": "ABC",
  9. "PriceLevel": null
  10. }
  11. ],
  12. "CurrencyMultiplier": 0
  13. }
  14.  
  15. PartnerName PartnerCode PartnerCurrencyCode PricingConditionId
  16. NULL NULL UAD 659853
  17.  
  18. SELECT * FROM OPENJSON(@json, '$')
  19.  
  20. SELECT *
  21. FROM OPENJSON(@json)
  22. WITH (PartnerName NVARCHAR(50) '$.PartnerName',
  23. PartnerCode nvarchar(50) '$.PartnerCode',
  24. PartnerCurrencyCode nvarchar(50) '$.PartnerCurrencyCode',
  25. PricingConditionId nvarchar(50) '$.PricingConditions.PricingConditionId')
  26.  
  27. PartnerName PartnerCode PartnerCurrencyCode PricingConditionId
  28. NULL NULL UAD NULL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement