3
SQL Error The multi-part identifier could not be bound.
I was trying to update data from one table of a database to
another table of another database.
The following TSQL makes sense about what I am talking
UPDATE db1.dbo.table1 SET db1.dbo.table1.data = db2.dbo.table2.data WHERE db1.dbo.table1.ID = db2.dbo.table2.data.ID
but I was getting a error like The multi-part identifier could not be bound This can be solved byusing aliasing feature of tsql, so I changed my query like this and that solves my problem with
The multi-part identifier could not be bound
UPDATE t1 SET t1.data = t2.data FROM db1.dbo.table1 t1 INNER JOIN db1.dbo.table2 t2 ON t1.ID = t2.ID
binance Registro March 26, 2024 - 11:01 pm
Thanks for sharing. I read many of your blog posts, cool, your blog is very good.
binance sign up bonus March 28, 2024 - 6:01 am
I don’t think the title of your article matches the content lol. Just kidding, mainly because I had some doubts after reading the article.
codice di riferimento binance March 30, 2024 - 3:16 am
Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope you can help me.