![]() |
Sergey Kornilov admin 6/26/2006 |
Susan, strSQLInsert = "insert into tblQuotes_copy select * from tblQuotes where " & where |
A
|
akira_nagasaki 8/12/2008 |
Susan, here is how it should be: strSQLInsert = "insert into tblQuotes_copy select * from tblQuotes where " & where
|
J
|
Jane 8/12/2008 |
If your field names contain white spaces use square brackets: strSQLInsert = "insert into [Deleted EndUser] select * from [End User] where " & where dbConnection.Execute strSQLInsert |
A
|
akira_nagasaki 8/13/2008 |
If your field names contain white spaces use square brackets:
|