Problemer med where betingelse
Jeg har følgende SQL sætning:strQuery = "SELECT Bog.Titel, Forfatter.Navn FROM Bog INNER JOIN (Forfatter INNER JOIN [Bog-forfatter] ON Forfatter.Forfatter_id = [Bog-forfatter].Forfatter_id) ON Bog.ISBN = [Bog-forfatter].ISBN FROM Forfatter INNER JOIN (Bog INNER JOIN [Bog-forfatter] ON Bog.ISBN = [Bog-forfatter].ISBN) ON Forfatter.Forfatter_id = [Bog-forfatter].Forfatter_id WHERE (([Bog-forfatter].ISBN)="12-1212-121-2");"
Men får følgende fejlmeddelse:
Microsoft VBScript compilation error '800a0401'
Expected end of statement
strQuery = strQuery & "FROM Forfatter INNER JOIN (Bog INNER JOIN [Bog-forfatter] ON Bog.ISBN = [Bog-forfatter].ISBN) ON Forfatter.Forfatter_id = [Bog-forfatter].Forfatter_id WHERE (([Bog-forfatter].ISBN)="12-1212-121-2");"
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------^