I have a select statement -
SELECT tblone.FirstName, tblone.LastName, tbltwo.FirstName, tbltwo.LastName,
tblthree.Meet FROM tblone, tbltwo, tblthree WHERE tblthree.VID = tbltwo.ID
AND tblone.CID = tblthree.CID
tblone and tbltwo both have FirstName and LastName columns
Normally I would just write <%=rs.fields("FirstName")%> but then it only
gives me the tblone FirstName. I tried <%=rs.fields("tbltwo.FirstName")%>
but that just errors.
How do I call both tables First and Last Names?
--
Olivia Towery