I want to run 30 models without changing variables and store the generated PersonMilestone and PersonLabel locally. After running the experiment in the Experimenter, I want to save the data using this SQL query from the CalculatedTable:
SELECT * FROM [Experiment.PersonMilestones] AS Milestones INNER JOIN [Experiment.PersonLabels] AS Labels ON Milestones.PID = Labels.PID;
However, I'm encountering an error with this query.
I would appreciate any assistance you can provide.