你可以的 JOIN 这张table是自己的。使用 LEFT JOIN 万一没有 Next Service 到目前为止。这个 COALESCE 将确保 Next_Mitigation 在那种情况下有什么不同吗。 N/A ``` SELECT current.*, COALESCE(next.Mitigation, 'N/A') AS Next_Mitigation FROM tblMitigation current LEFT JOIN tblMitigation next ON next.Headcode = current.Next Service
1条答案
按热度按时间gkn4icbw1#
你可以的
JOIN
这张table是自己的。使用LEFT JOIN
万一没有Next Service
到目前为止。这个COALESCE
将确保Next_Mitigation
在那种情况下有什么不同吗。N/A
```SELECT current.*, COALESCE(next.Mitigation, 'N/A') AS Next_Mitigation
FROM tblMitigation current
LEFT JOIN tblMitigation next ON next.Headcode = current.
Next Service