Need help on building CAML Query
问题 I have this table Col1 | Col2 | Col3 1 MeYou | You | Them 2 Them | They | You 3 Them | Me | They 4 They | Us | We 5 Us | Them | MeAsk I would like to do these Query Select all rows from MyTable Where Col1 contains 'Me' or Col2 contains 'Me' or Col3 contains 'Me' Select all rows from MyTable Where (Col1 contains 'Me' or Col3 contains 'Me') and Col2 equals to 'Them' Based on the table shown and using the condition that I wanted on my query, Query 1 should get 3 rows in return. The returned rows