Subquery?

D

Doreen

I need to get the value from another table if the field in
the current is null.

What would be the most efficient or easiest way to do this?

tblsched.payrate = null get payrate from tblrate.payrate

any help would be most appreciated
 
G

Gerald Stanley

Something along the lines of
SELECT Nz(tblsched.payrate, tblrate.payrate)
FROM etc

Hope This Helps
Gerald Stanley MCSD
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top