0

My question is as follows:

I'm using xpath to get the values i need in the XML. How do i get a value that has 2 conditions?

e.g. BOOK[UIM_LEVEL_TYPE='AAA'] and [UIM_SUB_REC_TYPE='BBB']- doesn't work.. Whats the the correct way to write it?

DasDas
  • 571
  • 3
  • 9
  • 32

1 Answers1

1

What's wrong with BOOK[UIM_LEVEL_TYPE='AAA' and UIM_SUB_REC_TYPE='BBB']? Or, for that matter, BOOK[UIM_LEVEL_TYPE='AAA'][UIM_SUB_REC_TYPE='BBB']

Ross Patterson
  • 9,527
  • 33
  • 48