1樓:匿名使用者
insert into b
select c.所有字段(排除rownumber 字段)from (select a.*, row_number() over( order by 排序字段 desc) as rownumber from 表table a) c
where c.rownumber between 5 and 10
2樓:
insert into 資料庫1.dbo.表1 select * from 資料庫2.
dbo.表2 where 欄位名=想要插入行的限制條件 or 欄位名=想要插入行的限制條件 or。。。 如果只有5行 就加5個條件就可以了
3樓:匿名使用者
insert into b
select top 5 * from (select top 10 * from 資料庫1.dbo.a order by 字段) order by 字段 desc
sqlserver 兩個資料庫中表的結構不同,怎麼把乙個表中的資料匯入到另乙個表中
4樓:匿名使用者
我可以給你個我自己的例子,具體的你照著這個例子去修改吧,可能對你有幫助
insert into day(numchnid,numsrvid,numprovid,numgwid,r_day,mo_all,mt_all,mt_valid,mt_userr,mt_sum)
select v.numchnid, v.numsrvid, v.numprovid, v.numgwid, date(v.r_day), v.mo_all,
case when w.mt_all is null then 0 else w.mt_all end,
case when w.mt_valid is null then 0 else w.mt_valid end,
case when w.mt_user is null then 0 else w.mt_user end,
case when w.sumfee is null then 0 else w.sumfee end
from report_t*** v
left join report_tmp4 w
on v.numchnid = w.numchnid
and v.numsrvid = w.numsrvid
and v.numprovid = w.numprovid
and v.numgwid = w.numgwid
and v.r_day = w.r_day;
commit;
5樓:牧牧巴巴
使用sql語句來完成
6樓:匿名使用者
把兩個表裡相同的字段設為關鍵字試一下吧,具體去資料堂找一下,應該能找到.
sql server 資料庫 如何把一張表複製到另乙個資料庫表中
7樓:海天盛
sqlserver資料庫如何把一張表複製到另乙個資料庫表中的方法。
如下參考:
1.首先,在桌面上單擊「managementstudio」圖示。
3.然後,在這個介面中,選擇表test2的所有內容,並右鍵單擊「copy」選項。
4.然後,在該介面中右鍵單擊表test1中的「編輯前200行」選項。
5.接下來,右鍵點選介面中的「貼上」選項。
6.最後,在這個介面中顯示複製到資料庫表test1的內容。
8樓:
工具/材料:management studio。
1、首先在桌面上,點選「management studio」圖示。
2、之後在該介面中,右鍵點選test2表的「編輯前200行」選項。
3、接著在該介面中,全選test2表的內容,右鍵點選「複製」選項。
4、然後在該介面中,右鍵點選test1表的「編輯前200行」選項。
5、接著在該介面中,右鍵點選「貼上」選項。
6、最後在該介面中,顯示複製到資料庫表test1中的內容。
9樓:辛清婉零人
如果在乙個伺服器上,可以用語句實現。
insert
into
database1.dbo.table1(a1,a2)select
b1,b2
from
database2.dbo.table2
若在不同伺服器上,可以用資料庫的匯出功能。
10樓:
是表的結構還是表中的資料?
表結構:
生成sql語句,在另乙個資料庫建立
表中的資料:
兩個資料庫可以連線嗎?
只能跨資料庫查詢表的資料在另乙個資料庫建立select *
into 表名
form [資料庫a].dbo.表名
11樓:匿名使用者
insert into 另一張表名
select * from 要複製的表
12樓:匿名使用者
sql語句供參考如下:
insert into dest_table select * from orgn_table where 條件
前提是兩表結構一樣,如果不一樣,select 後設定合適的字段即可。
13樓:匿名使用者
可以使用sql自帶的匯入 匯出功能。
14樓:
select * into newdatabase.newtable from olddatabase.oldtable
sql server 2000怎樣在同乙個資料庫中將一張表的內容全部複製到另一張表中
15樓:匿名使用者
也就是這樣insert into tb2(c1,c2 ) select from tb1
16樓:匿名使用者
insert into b
select * from a
條件雙方欄位要相同,否則不能用*
資料庫中兩表結構相同,把乙個表的資料導到另外乙個表的sql語句怎麼寫?
17樓:學有止境
insert into a select * from b
如果欄位中包含identity列,timestamp列等自動生成的字段,則不能列在如上語句中
18樓:匿名使用者
已經完全相同的情況下直接
insert a select * from b
19樓:匿名使用者
insert into a select * from b
20樓:匿名使用者
oracle:
insert into a select * from b;
21樓:匿名使用者
直接用mssql的資料匯入功能
22樓:檀品梁流麗
內連線可能會漏掉資料,所以一定要用左連線才能確保不漏掉資料。
select
t1.學號,
t1.姓名,
t3.獎項名稱,
t3.獎金,
t4.懲罰名稱
from
學生基本資訊表
t1left
join
懲獎情況表
t2on
t1.學號
=stu.學號
left
join
獎項表t3
ont2.獎項編號
=t3.獎項編號
left
join
懲罰表t4
ont2.懲罰編號
=t4.懲罰編號
sql server 2008 如何將乙個資料庫的結構和部分表給拷貝出來
23樓:阿信
你試一下這樣做,轉儲成為sql檔案,然後到另外的資料庫,執行sql檔案
sql server 2000 中 如何將資料庫中一張表的資料複製到另乙個資料庫的表中?
24樓:
如果在乙個伺服器上,可以用語句實現。
insert into database1.dbo.table1(a1,a2)
select b1,b2 from database2.dbo.table2
若在不同伺服器上,可以用資料庫的匯出功能。
25樓:
如果是在乙個例項上直接用資料庫名.使用者名稱.表名就可以訪問不同的資料庫中的表了,接下來直接採用insert就行了;如果不是乙個例項上的,通常都是複製過去掛到乙個例項上來做的
26樓:匿名使用者
用sql server管理器中的資料匯入匯出工具
選擇**與目標,對錶進行複製,你還可以儲存dts下次執行
27樓:
1。先將的結構,複製過去,仍用ctrl+c;ctrl+v.
2。在將其資料,插入即可;
很好辦?3分鐘吧!祝你成功!
28樓:匿名使用者
insert into table1(欄位1) select b.欄位1 from table1 a,table2 b where table1.欄位1 is null and table1.
id=table2.id
假設id是主鍵
sqlserver怎麼匯出資料庫
材料 工具 sql server 1 開啟sql server,找到需要匯出的資料庫。2 在需要匯出的資料庫上右擊,選擇任務選項中的匯出資料選項。3 sql server匯入和匯出嚮導視窗中,單擊下一步按鈕。4 選擇資料來源對話方塊中,選擇資料來源選項中的microsoft ole db provi...
如何連線sql server資料庫
以sqlserver2008r2為例。1 開啟sql2008,使用windows身份登入 2 登入後,右鍵選擇 屬性 左側選擇 安全性 選中右側的 sql server 和 windows 身份驗證模式 以啟用混合登入模式 3 選擇 連線 勾選 允許遠端連線此伺服器 然後點 確定 4 安全性 登入名...
如何連線sqlserver資料庫
以sqlserver2008r2為例。1 開啟sql2008,使用windows身份登入 2 登入後,右鍵選擇 屬性 左側選擇 安全性 選中右側的 sql server 和 windows 身份驗證模式 以啟用混合登入模式 3 選擇 連線 勾選 允許遠端連線此伺服器 然後點 確定 4 安全性 登入名...