11/08/2006, 17:51
|
| Colaborador | | Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años Puntos: 38 | |
Código:
USE pubs
GO
SELECT c.*, o.*
FROM Northwind.dbo.Customers AS c INNER JOIN
OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'c:\NWIND.MDB';'Admin';'', Orders)
AS o
ON c.CustomerID = o.CustomerID
GO
Última edición por Andres95; 11/08/2006 a las 18:14 |