Change Table mapping to Status

How to map the Change Database table to Status table,

Add Comment
2 Answer(s)
Best answer

select c.change_number, n.description “STATUS”
 from change c, nodetable n
 where c.status = n.id;

Agile Angel Answered on May 7, 2015.
Add Comment

Hi Kevin, Thanks.

Agile Talent Answered on May 8, 2015.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.