求資料庫高手幫忙,有80張表,每張裡最少的30 100條記錄,每張都有列CAS號和Library

2022-04-12 06:55:32 字數 614 閱讀 2325

1樓:踢館nb人物

create table 新錶名 as

select cas,library from 表1union

select cas,library from 表2union

select cas,library from 表3......

一直union到第80個表吧

union會去掉重複資料,

如果用union all,就是不去重複資料

2樓:

select cas,libra into newtable from table1 union

select cas,libra from table2 union

...select cas,libra from table80

要想保留重覆記錄,最好加乙個識別列,如表名

select 表名='table1',cas,libra into newtable from table1 union

select 表名='table2',cas,libra from table2 union

...select 表名='table80',cas,libra from table80

急求!!資料庫的題目,哪位幫忙做下

1.select t.sno,t.sname from s t where t.女生 and t.age 20 1.建立乙個數來據庫名為自 醫院 create database 醫院bai go 開啟資料庫du 醫院use 醫院go 建立醫生zhi表 create table醫生 編號int,姓名v...

一道資料庫題,求高手幫忙,謝謝,一道資料庫題,求高手幫忙,謝謝

電腦我是很精通的,但是這個問題真的是難倒我了。不好意思。我會研究研究你這個問題的。求幫忙做一道資料庫題。對高手來說很簡單的,幫幫忙,謝謝。是要用關係代數表示式嗎?全部直接sql語句寫完不行嗎?1.cid,cname e68a84e8a2ad62616964757a686964616f31333330...

查詢MYSQL同資料庫2張表的不同字段值語句怎麼寫

select log.student.name from log left join student on log.id student.id and log.tim student.tim 這個是bai用的du左聯合 zhi的方 dao式 版也可以 權select log.student.name...