|
dcampbe11 7/17/2004 |
Harry, |
![]() |
Sergey Kornilov admin 7/19/2004 |
You need to use INNER JOIN in SQL query to pull data from lookup tables on the list page. Here is the simple example: select Field1, Field2, Field3, Table2.LookupField from Table1 inner join Table2 on Table1.ForeignKeyField = Table2.PrimaryKeyField |