Burada tüm farklı yaklaşımları birleştiriyoruz.
- Güncellemeyi seçin
- Ortak bir tablo ifadesiyle güncelleme
- Birleştirmek
Örnek tablo yapısı aşağıdadır ve Product_BAK'ten Product table'a güncellenecektir.
Ürün
CREATE TABLE [dbo].[Product](
[Id] [int] IDENTITY(1, 1) NOT NULL,
[Name] [nvarchar](100) NOT NULL,
[Description] [nvarchar](100) NULL
) ON [PRIMARY]
Product_BAK
CREATE TABLE [dbo].[Product_BAK](
[Id] [int] IDENTITY(1, 1) NOT NULL,
[Name] [nvarchar](100) NOT NULL,
[Description] [nvarchar](100) NULL
) ON [PRIMARY]
1. Güncellemeyi seçin
update P1
set Name = P2.Name
from Product P1
inner join Product_Bak P2 on p1.id = P2.id
where p1.id = 2
2. Ortak bir tablo ifadesiyle güncelleme
; With CTE as
(
select id, name from Product_Bak where id = 2
)
update P
set Name = P2.name
from product P inner join CTE P2 on P.id = P2.id
where P2.id = 2
3. Birleştir
Merge into product P1
using Product_Bak P2 on P1.id = P2.id
when matched then
update set p1.[description] = p2.[description], p1.name = P2.Name;
Bu Birleştirme ifadesinde, hedefte eşleşen bir kayıt bulamazsanız, ancak kaynakta mevcutsa ve lütfen sözdizimini bulursak ekleyebiliriz:
Merge into product P1
using Product_Bak P2 on P1.id = P2.id;
when matched then
update set p1.[description] = p2.[description], p1.name = P2.Name;
WHEN NOT MATCHED THEN
insert (name, description)
values(p2.name, P2.description);
SET Table.other_table_id = @NewValue
) arasındaki bağlantıyı düzenliyorsanız, ON deyimini şöyle bir şeye değiştirinON Table.id = @IdToEdit AND other_table.id = @NewValue