I currently have an asp script that looks something like :<br><br>------------------------------------------<br><br>StrQuery = "SELECT f.CustId, max(fd.UploadDate)as LastDate from FileDescription f, FileDescription fd, Customer where <br>f.CustId = fd.CustId and f.FileID = fd.FileID <br>Group by f.CustId Order By f.CustId"<br><br>set conntemp=server.createobject("adodb.connection"
<br>conntemp.open myDSN<br><br>set allcust=conntemp.execute(StrQuery)<br>allcust.movefirst<br><br><TR><TD align= "center" BGCOLOR="#99FF99"> <%my_link=scriptresponder & "?id=" & allcust(idfield)%><br><a HREF="<%=my_link%>">Update</a> </TD><br><TD align= "center" BGCOLOR="#99FF99"><% Response.Write allcust("CustID"
%></TD> <br><TD BGCOLOR="#99FF99"><%my_link=scriptresponder2 & "?id=" & allcust(idfield)%><br><a HREF="<%=my_link%>"><%Response.Write allcust("CustName"
%></a></TD> <br><TD BGCOLOR="#99FF99"><% Response.Write allcust("UploadDate"
%></TD><br><TD BGCOLOR="#99FF99"><% Response.Write allcust("Fax"
%></TD><br><TD BGCOLOR="#99FF99"><% Response.Write allcust("email"
%></TD> <br><br>------------------------------------------<br><br>The problem is I want to be able to call allcust("CustName"
from the Customer table and allcust("UploadDate"
from the FileDescription table.<br>My Sql statement does not allow me to get this information when I cal it, How can I get all these details?