ironfelix717
Registered User.
- Local time
- Today, 11:21
- Joined
- Sep 20, 2019
- Messages
- 193
Hi,
Is it possible to provide a SET value in an INSERT/SELECT-FROM query??
EX:
In the above, I need to insert all the fields from 'TempTable', but instead of inserting one the fields (say, Tool Version), I need to set the value instead.
Thanks
Is it possible to provide a SET value in an INSERT/SELECT-FROM query??
EX:
Code:
SQL = "INSERT INTO ToolingBuilds " & _
"SELECT ToolID, ToolVersion, ToolCompID, ToolCompVersion, " & _
"DateModified FROM TempTable;"
In the above, I need to insert all the fields from 'TempTable', but instead of inserting one the fields (say, Tool Version), I need to set the value instead.
Thanks