怎麼用SQL語句同步兩個表中的欄位值

2021-05-14 15:06:00 字數 2368 閱讀 2243

1樓:千鋒教育

需要用觸發器

zhi來實現。

如有兩張表dao——a表和回b表,建立觸答發器使當a表插入資料後b表也同步插入資料。其中b表插入資料的欄位需要同a表中的欄位相對應。

create trigger 觸發器名稱

on a表

after insert

as begin insert into

b表(b表欄位1,b表欄位2,b表欄位3)select a表欄位1,a表欄位2,a表欄位3from insertedend

2樓:匿名使用者

需要將a表和b表通過某個或多個欄位關聯起來,再操作

3樓:匿名使用者

首先你想在什麼情況下讓兩個表的欄位同步,是在更新的時候嗎?

4樓:匿名使用者

update b set b.c=a.c from b b ,a a where a.id=b.id

如何用sql語句查詢兩張表中的相同欄位資料

5樓:千鋒教育

select * from 表1 a,表2 b where a.aid=b.bid

有兩張表:表1表2 兩表裡

內一一對應的是aid和bid

a,b分別容

代表:表1,表2 的別名,換句話說a就是表1,b就是表2a.aid 就是:表1的欄位aid

b.bid 就是 : 表2的欄位bid

如何用sql語句查詢兩張表中的相同欄位資料

6樓:千鋒教育

假設表1位table1 ,表2位table2select a.col

from (select column_name col from user_tab_columns where table_name = 'table1') a ,

(select column_name col from user_tab_columns where table_name = 'table2') b

where a.col = b.col

這樣就可以查詢出兩個表得相同欄位了

c#如何使用sql語句來建表,新增欄位

7樓:表哥傻叼

連線字串 = @"data source=localhost\伺服器名;initial catalog=資料庫名 ;integrated security=true";

sqlconnection con = new sqlconnection(連線字串);

string ss = 「sql語句」;

sql***mand *** = new sql***mand(ss, con);

con.open();

***.executenonquery();

con.close();

本回答由電腦網路分類達人 郭強推薦

12分享舉報

拽sure

推薦於2017-09-26

連線字串 = @"data source=localhost\伺服器名;initial catalog=資料庫名 ;integrated security=true";

sqlconnection con = new sqlconnection(連線字串);

string ss = 「sql語句」;

sql***mand *** = new sql***mand(ss, con);

con.open();

***.executenonquery();

con.close();

用sql語句查詢某表中擁有多個相同欄位中的一個值

8樓:匿名使用者

--欄位1欄位2,欄位3,欄位4相同

select 欄位1 from 表名 where 欄位1=欄位2 and 欄位2=欄位3 and 欄位3=欄位4

--多個以此類推

9樓:千鋒教育

首先你要確定是哪個欄位 如欄位a 欄位 b 中的值都是abc select * from 表名 where 欄位a='abc' and 欄位b='abc

用sql語句查詢某表中擁有多個相同欄位中的一個值

10樓:千鋒教育

,希望以下

回答能幫回助您答

select * from case where class = (select top 1 class from case group by class order by count(class ) desc)

用SQL查詢語句怎麼讓表中ID按照順序來

這個首先你要寫出你要查詢的內容,如 select name,age from student order by id asc asc 代表升序這也是預設的desc代表降序 select row number over order by id asc as rowno from 表 降序 order ...

怎樣用sql語句刪除表中的前面幾條記錄

sql語句刪除表中的前面幾條記錄的重點在於你如何去獲取前面的幾條記錄。和不同的數版據庫中也有一些關係權 通常有以下幾種方式 樣例 1 簡單的 top方式 delete from 表 where id in select top 3 id from 表 2 rank排名函式 根據某些業務條件,使用排名...

怎麼可以用sql語句給access建表

1 打bai 開一個access資料庫軟體,可以開啟du已建立好的zhi資料庫。dao2 接著,滑鼠左鍵單擊菜回單下的答 查詢設計 按鈕,如下圖所示。3 然後,在彈出的 查詢顯示 視窗上,滑鼠左鍵單擊 關閉 按鈕。4 接著,在設計選單選項中,滑鼠左鍵選擇 sql檢視 按鈕。5 然後,在 sql檢視 ...