Sample code
UPDATE T 
	SET dbo.Table_1.
 FROM dbo.atbl_Accounting_OrdersDeliveries  AS T 
	INNER JOIN dbo.atbl_Accounting_OrdersItems AS I 
		ON T.Domain = I.Domain AND T.Template = I.Template	
When trying to enter SET T. to start setting fields, it autoselects the first table starting with a T. The same thing when entering UPDATE T; The alias does not turn up in the list, but since I don't have SPACE selecting from the list this one goes OK.
      
        
        
        
      
     
  
When trying to enter SET T. to start setting fields, it autoselects the first table starting with a T. The same thing when entering UPDATE T; The alias does not turn up in the list, but since I don't have SPACE selecting from the list this one goes OK.