S
Sameer Motwani
Hi,
The following query
INSERT INTO Table1
SELECT *, const1,const2,const3
FROM Table2
inserts multiple rows from Table2 to Table1, where the structure of Table1
contains all columns of Table2 plus 3 additional fields.
The query shown above works correctly on SQL Server but fails on Access.
Does anyone know why does this happen and is it possible to have a single
SQL query that works correctly on both SQL Server and Access.
Any help would be highly appreciated
Thanks!
Sameer
The following query
INSERT INTO Table1
SELECT *, const1,const2,const3
FROM Table2
inserts multiple rows from Table2 to Table1, where the structure of Table1
contains all columns of Table2 plus 3 additional fields.
The query shown above works correctly on SQL Server but fails on Access.
Does anyone know why does this happen and is it possible to have a single
SQL query that works correctly on both SQL Server and Access.
Any help would be highly appreciated
Thanks!
Sameer