ここで記事をチェックし、指先が青くなるまでグーグルで検索しました。私は読み、読み、読みましたが、Sharepoint2010 の CAML 結合に頭を悩ませているようには見えません。
質問: CAML Join Query と SQL Join Query を比較した完全な例を誰か教えてください。
*For Example (SQL of Course, just something to work with)*
If I had a Database named "whatever" & it contained two tables.
We'll name these "tableA" & "tableB", respectively.
Let's say they look like this:
- tableA -
ID | Column1 | Column2 | Column3
- tableB -
ID | Column4 | Column5 | Column6
SELECT tableA.Column1, tableA.Column2, tableB.Column4
FROM tableA
INNER JOIN tableB ON tableA.ID = tableB.ID
Would give me something like:
- newTable -
Column1 | Column2 | Column4
result | result | result
result | result | result
result | result | result
繰り返しますが、私の質問は、Sharepoint 2010 で CAML Joins Query 文字列を使用して、この同じ操作が実行された正確な例を取得できますか?