INNER JOIN with Table-Valued Function not working

后端 未结 4 1701
执笔经年
执笔经年 2020-12-06 04:19

I have a table valued function that returns a table. When I try to JOIN the table-valued function with another table I don\'t get any results, but when I copy t

4条回答
  •  悲哀的现实
    2020-12-06 04:42

    Your "ON" clause of the join is most likely incorrect. Perhaps a small typo like

    JOIN x ON oID = odID

    instead of

    JOIN x ON oID = oID

提交回复
热议问题