I'm trying to figure way to join SharePoint lists using a a SQL like SELECT statement.
I have the following tables:
[customer details]
[customer notes]
[customer reviews]
all these have a common customer ID so I'm trying to do a SELECT across all three so that I can build a SharePoint list that will output the three tables when a customer number is entered in the search bar.
e.g.
select
Customer 101
RETURN
101[customer details]
101[customer notes]
101[customer reviews]
Hope you can help