Hi
Can anyone offer advice as to what the (+) entry within the following sql syntax is actually doing please?
Can anyone offer advice as to what the (+) entry within the following sql syntax is actually doing please?
Code:
[COLOR=blue]
strSQL = "SELECT * FROM customers, cust_titles, cust_addr,cust_codes"
strSQL = strSQL & " WHERE custcodes=code(+)"
strSQL = strSQL & " AND title=titleid(+)"
strSQL = strSQL & " AND customer=customerid"
strSQL = strSQL & " AND edate is NULL"
strSQL = strSQL & " AND customerid=?"
set getCustomerByLink=ExecQueryRS(strSQL,Array(adNumeric,10,linkRS("customerID")))
[/color]