導航:首頁 > 編程大全 > 按照資料庫b來更新資料庫a

按照資料庫b來更新資料庫a

發布時間:2023-06-04 04:23:31

Ⅰ SQL資料庫中如何從A表自動更新數據到B表

要實現兩個表之間的數據的自動更新,可以採用觸發器來實現,觸發器的實現方法版:
1、A表有數據更新權的時候自動更新B表:
create or replace trigger tg after update on A for each row
begin
update B set xx=xx where b.aid = a.id;
end;
/
2、A表插入數據時,B表更新數據:
create or replace trigger tgg after insert on A for each row
begin
insert B values(xxxx);
end;
/
如果不需要每條數據都跟新,只需要在每次A更新的時候更新B,可以將後面的for each row去掉。

Ⅱ Mysql跨資料庫更新

Mysql跨資料庫更新
update a.tabble1,b.table2 set a.online = 1 where table1.time = b.table2.time

Ⅲ SQL間的兩個資料庫表的同步更新

可以利用觸發器實現,在insert 觸發器中,使用inserted表根據你的條件,將數據分別保存在不同的表中
insert b1
select * from inserted
where datepart(mm,datefield)= 1
insert b2
select * from inserted
where datepart(mm,datefield)= 2

Ⅳ sql中用另一個表的一列來更新資料庫表

merge into a
using b
on(a.主鍵=b.主鍵)
when matched then
update set a.c=b.d

閱讀全文

與按照資料庫b來更新資料庫a相關的資料

熱點內容
4kb的txt文件差不多多少字 瀏覽:984
u盤文件突然變成exe 瀏覽:164
現在哪些學校初中有學編程的 瀏覽:402
word查找全選 瀏覽:599
開工報告附什麼文件資料 瀏覽:150
分區工具app怎麼用 瀏覽:212
安卓堅果雲文件路徑 瀏覽:591
sqllog文件 瀏覽:236
如何在電腦中找到文件路徑 瀏覽:830
數據結構訪問和查找有什麼區別 瀏覽:401
怎麼清空icloud內的數據 瀏覽:338
微信鎖屏後音樂停止 瀏覽:668
applepay蘋果手機卡 瀏覽:835
一個14mb的文件能儲存多少萬漢字 瀏覽:478
騰訊文檔里如何導出數據 瀏覽:979
java面試題csdn 瀏覽:410
rpgnvp是什麼文件 瀏覽:594
如何將一列數據復制到excel 瀏覽:488
sd卡怎麼恢復excel文件 瀏覽:282
gdblinux內核多核調試 瀏覽:24

友情鏈接