Mirica_Victor
Registered User.
- Local time
- Today, 12:05
- Joined
- Oct 24, 2008
- Messages
- 11
Hy,
Problem: I have a few tables from wich I need to extract the value from one specific field and update it to another table (other from the first). The value in the field is the same in each record of the given table, but different in the next table.
I have a table wich contains the table names and the field that contains that data. For a single table I can do a "(select top 1 from
.[field] from
)" - this gives the corect info in a select query- , but this would mean to do a update qwery for each table (13), eather way, I cannot put that sql string to work in a update query because I get the "Operation must use an updateble query". There are no restrictions on the database, I have full acess, no limitations.
Anny ideas?
Problem: I have a few tables from wich I need to extract the value from one specific field and update it to another table (other from the first). The value in the field is the same in each record of the given table, but different in the next table.
I have a table wich contains the table names and the field that contains that data. For a single table I can do a "(select top 1 from
Anny ideas?