The only thing I can think of is that the database engine ignores the namespace, since the query area is limited to the table area when working with INSERT INTO. When it comes to the UPDATE message, where several tables may be part of the scope, there will be an error below. I donβt know why this is happening, but if I have to guess, probably all the values ββto the left of the last period. "
If you analyze the execution plan of the request below
CREATE TABLE Table1(id INT,name VARCHAR(10)) INSERT INTO Table1(Table2.dbo.id,...................name) Values (1,'A')
As
INSERT INTO [Table1]([id],[name]) Values(@1,@2)
source share