Hi there,
I'm using MS SQL Server 2000, and I need to update one collumn in one table, and another column in another table, something like this:
UPDATE table1,table2
SET table1.col1 = '1', table2.col2 = '2'
how can I do it?
thank you for your attention.