
15/03/2005, 04:02
|
| | Fecha de Ingreso: noviembre-2004 Ubicación: Sevilla
Mensajes: 139
Antigüedad: 20 años, 7 meses Puntos: 0 | |
ya tengo acceo total, el error viene cuando utilizo inner join:
strsql = "SELECT usuarios.*, textos.* FROM usuarios INNER JOIN textos ON textos.textos_autor = usuarios.usuarios_id where textos.textos_publicado = true and textos.textos_id = " & clng(request.querystring("id")) & ";"
de esta otra manera va bien:
strsql = "SELECT textos.* FROM textos where textos_id = " & clng(request.querystring("id")) & ";"
pero necesito el inner join :S
un saludo |