Ver Mensaje Individual
  #5  
Antiguo 23-11-2006
leodelca23 leodelca23 is offline
Miembro
 
Registrado: jul 2006
Posts: 91
Reputación: 18
leodelca23 Va por buen camino
Hice lo que me dijiste y me sale un error
Código SQL [-]
SELECT (Detalle.*, Producto.Descripcion ,Cliente.nombre)
FROM Detalle
INNER JOIN Factura ON Detalle.idfactura = Factura.idfactura
INNER JOIN Producto ON Producto.idProducto = Detalle.idPRoducto
INNER JOIN Cliente ON Cliente.idCliente = Factura.idCliente

y me sale este error :

Dynamic SQL Error
SQL error code = -104
Token unknown - line 1, column 18
,
Statement: SELECT (Detalle.*, Producto.Descripcion ,Cliente.nombre)
FROM Detalle
INNER JOIN Factura ON Detalle.idfactura = Factura.idfactura
INNER JOIN Producto ON Producto.idProducto = Detalle.idPRoducto
INNER JOIN Cliente ON Cliente.idCliente = Factura.idCliente
Responder Con Cita