Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

incorrect syntex near AS: ....& " AS CertificateNr"

Status
Not open for further replies.

Big1934

Programmer
Jul 1, 2009
33
US
strSqlEN_TransTable = "SELECT CertificateNr " & _
"FROM dbo.EndorsementTransactions " & _
"WHERE CertificateNr = " & CertificateNr.Value & " AS CertificateNr
 
try
Code:
strSqlEN_TransTable = "SELECT CertificateNr " & _
                "FROM dbo.EndorsementTransactions " & _
                "WHERE CertificateNr = " & CertificateNr
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top