I got this error message on this sql statement:
"SELECT CandidateContactInfo.*, EmployerInfo.* " _
& "FROM CandidateContactInfo LEFT JOIN EmployerInfo " _
& "ON UserName='" & Request.QueryString("txtUserName" & "'OR UserName='" & session("UserName" _
& "' AND Password='" & Request.QueryString("txtPassword" & "'OR Password='" & session("Password" & "'"
Is join really not supported? Where is it not supported and why?
"SELECT CandidateContactInfo.*, EmployerInfo.* " _
& "FROM CandidateContactInfo LEFT JOIN EmployerInfo " _
& "ON UserName='" & Request.QueryString("txtUserName" & "'OR UserName='" & session("UserName" _
& "' AND Password='" & Request.QueryString("txtPassword" & "'OR Password='" & session("Password" & "'"
Is join really not supported? Where is it not supported and why?