I tried some changes...
I changed the hyperlink for the first column of the Questions table so all Questionid columns call the same article for the answers parametric query
<a href="index.php?option=com_content&view=article&id=3">{$value}</a>
I created a second Ari table module with the query that you suggested me with the query:
SELECT
*
FROM
`dbo.Answers`
where QuestionId={$REQUEST:QuestionId}
and the result was : No data available
i enable the SQL Debug mode and i have that results
(mysql): SELECT * FROM `dbo.Answers` where QuestionId=
Error (1064): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 5
No data available.
when i run an example of the second query for specific QuestionId
SELECT
*
FROM
`dbo.Answers`
where QuestionId=900
Everything is ok
So something is going wrong with the part of the query "where QuestionID={$REQUEST:QuestionId}"
Please give me your email to provide you with the credentials of this site if you are able to take a look...or please advice me...
Thank you in advance!