create table table1
(
ID int,
aname nvarchar(100),
adesc nvarchar(1000
)
GO
create table table2
(
ID int,
bname nvarchar(100),
bdesc nvarchar(1000
)
go
/*
HERE HOW TO UPDATE MULTIPLE COLUMN AND MULTIPLE TABLE LIKE THIS
UPDATE ANAME='AA',BNAME='BB' WHERE ID=ID
*/
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com