dynamic sql generation is not supported against multiple base tables

后端 未结 4 1697
死守一世寂寞
死守一世寂寞 2020-12-21 16:53

I tried to add a new row to a Table in an SQL DB, but I had a problem :

dynamic sql generation is not supported against multiple base tables

4条回答
  •  粉色の甜心
    2020-12-21 17:25

    Add DISTINCT in your select statement with inner join.

    This will solve the issue.

    like Select Distinct Employee.Ecode, .........

提交回复
热议问题