Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Expert,
Need your help.
I want to fetch records something like this :
where LocationId = 296 and TxTyp = CI
Where LocationId = 302 and TxTyp = CO
how can i get this
Looking for response
Thanks
Regards
Maybe in this way:
where (LocationId = 296 and TxTyp = 'CI') or (LocationId = 302 and TxTyp = 'CO')
- Marcus