firefly2k8
Registered User.
- Local time
- Today, 10:00
- Joined
- Nov 18, 2010
- Messages
- 48
Can anyone see what is wrong with this:
If I can't use wild cards, how would I do this?
I should add that Excluded_Trades has the same table structure as Project_Table
Code:
UPDATE Excluded_Trades
INNER JOIN Project_Table
SET Excluded_Trades.* = Project_Table.*
WHERE Project_Table.Project_ID = 276;
If I can't use wild cards, how would I do this?
I should add that Excluded_Trades has the same table structure as Project_Table