Requête SQL 2 tables
Fermé
dreadoune
-
25 mars 2009 à 12:01
Dreadoune Messages postés 123 Date d'inscription mercredi 25 mars 2009 Statut Membre Dernière intervention 24 avril 2010 - 2 avril 2009 à 08:58
Dreadoune Messages postés 123 Date d'inscription mercredi 25 mars 2009 Statut Membre Dernière intervention 24 avril 2010 - 2 avril 2009 à 08:58
A voir également:
- Requête SQL 2 tables
- Tables des matières word - Guide
- 2 ecran pc - Guide
- Word numéro de page 1/2 - Guide
- 2 comptes whatsapp - Guide
- 3 bip long 2 bip court hp - Forum BIOS
5 réponses
Tu as oublié un alias dans ton where. Il ne sais pas sur quelle table aller chercher:
sql = "SELECT contacts.id_clients, prospection.id_clients FROM contacts INNER JOIN prospection ON contacts.id_clients = prospection.id_clients WHERE contacts.id_clients=" & id"
A+
sql = "SELECT contacts.id_clients, prospection.id_clients FROM contacts INNER JOIN prospection ON contacts.id_clients = prospection.id_clients WHERE contacts.id_clients=" & id"
A+
Dreadoune
Messages postés
123
Date d'inscription
mercredi 25 mars 2009
Statut
Membre
Dernière intervention
24 avril 2010
7
25 mars 2009 à 14:52
25 mars 2009 à 14:52
ca progresse mais on y est pas encore :)
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Type mismatch in expression.
/test/prospection/maj-contactsOk.asp, line 44
la ligne 44
conn.Execute sql
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Type mismatch in expression.
/test/prospection/maj-contactsOk.asp, line 44
la ligne 44
conn.Execute sql
Dreadoune
Messages postés
123
Date d'inscription
mercredi 25 mars 2009
Statut
Membre
Dernière intervention
24 avril 2010
7
25 mars 2009 à 14:55
25 mars 2009 à 14:55
Si peux aider pour m'aider (lol) voici le bout de code
id = Request.QueryString("id")
sql = "SELECT contacts.id_clients, prospection.id_clients FROM contacts INNER JOIN prospection ON contacts.id_clients = prospection.id_clients WHERE contacts.id_clients=" & id "
conn.Execute sql
Set rs = Server.CreateObject("ADODB.RecordSet")
rs.open sql, conn, 3, 3
rs.update
rs.close
Set rs = Nothing
%>
id = Request.QueryString("id")
sql = "SELECT contacts.id_clients, prospection.id_clients FROM contacts INNER JOIN prospection ON contacts.id_clients = prospection.id_clients WHERE contacts.id_clients=" & id "
conn.Execute sql
Set rs = Server.CreateObject("ADODB.RecordSet")
rs.open sql, conn, 3, 3
rs.update
rs.close
Set rs = Nothing
%>
Dreadoune
Messages postés
123
Date d'inscription
mercredi 25 mars 2009
Statut
Membre
Dernière intervention
24 avril 2010
7
30 mars 2009 à 08:30
30 mars 2009 à 08:30
ca n'inspire toujours personne ?
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
Dreadoune
Messages postés
123
Date d'inscription
mercredi 25 mars 2009
Statut
Membre
Dernière intervention
24 avril 2010
7
2 avril 2009 à 08:58
2 avril 2009 à 08:58
UP
25 mars 2009 à 14:44
Microsoft VBScript compilation error '800a0409'
Unterminated string constant
/test/prospection/maj-contactsOk.asp, line 42
sql = "SELECT contacts.id_clients, prospection.id_clients FROM contacts INNER JOIN prospection ON contacts.id_clients = prospection.id_clients WHERE contacts.id_clients=" & id"
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------^
25 mars 2009 à 14:49
essaye ça:
sql = "SELECT contacts.id_clients, prospection.id_clients FROM contacts INNER JOIN prospection ON contacts.id_clients = prospection.id_clients WHERE contacts.id_clients=" & id