I have the following sql statement:
I need to join four tables instead of having just one.
System
System_ID(PK) | System Code | System description | CompanyID | CoverID | I System | Notes
System_Terms
Terms_ID(PK) | Terms Text | SystemID
System_PDF
PDF_ID | PDF data | SystemID
I’ve been trying to do this for some time but haven’t succeeded.
I think normally the join would be on the WHERE but I am using this to get the Querystring value??
Can anyone help?
Thanks.
Code:
<%
Dim id
id=Request.QueryString("id")
SQL = "SELECT * FROM System WHERE System.[System Code] = '" & id & "'"
Set rs = obj_CN.Execute(SQL, adBoolean)
%>
I need to join four tables instead of having just one.
System
System_ID(PK) | System Code | System description | CompanyID | CoverID | I System | Notes
System_Terms
Terms_ID(PK) | Terms Text | SystemID
System_PDF
PDF_ID | PDF data | SystemID
I’ve been trying to do this for some time but haven’t succeeded.
I think normally the join would be on the WHERE but I am using this to get the Querystring value??
Can anyone help?
Thanks.