Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Join Problem

Status
Not open for further replies.

GrommitAPW

Programmer
Jan 25, 2001
7
BE
I have a table (tbl_A) and a view (vw_B) -

This syntax works -
SELECT tbl_A.*
FROM tbl_A, vw_B WHERE tbl_A.ID = vw_B.ID

This syntax does not -
SELECT tbl_A.*
FROM tbl_A INNER JOIN vw_B ON tbl_A.ID = vw_B.ID

Any ideas ?

Thanks, Adrian
 
No error, it just does not return any rows.

Thanks, Adrian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top