1樓:千鋒教育
,希望以下
回答能幫回助您答
select * from case where class = (select top 1 class from case group by class order by count(class ) desc)
用sql語句查詢某表中擁有多個相同欄位中的一個值
2樓:匿名使用者
--欄位1欄位2,欄位3,欄位4相同
select 欄位1 from 表名 where 欄位1=欄位2 and 欄位2=欄位3 and 欄位3=欄位4
--多個以此類推
3樓:千鋒教育
首先你要確定是哪個欄位 如欄位a 欄位 b 中的值都是abc select * from 表名 where 欄位a='abc' and 欄位b='abc
如何用sql語句查詢兩張表中的相同欄位資料
4樓:千鋒教育
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語句查詢兩張表中的相同欄位資料
5樓:千鋒教育
假設表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
這樣就可以查詢出兩個表得相同欄位了
怎麼用sql語句同步兩個表中的欄位值?
6樓:千鋒教育
需要用觸發器
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
7樓:匿名使用者
需要將a表和b表通過某個或多個欄位關聯起來,再操作
8樓:匿名使用者
首先你想在什麼情況下讓兩個表的欄位同步,是在更新的時候嗎?
9樓:匿名使用者
update b set b.c=a.c from b b ,a a where a.id=b.id
從多個表中查詢資料的sql語句,sql一個表中同時查詢兩個count的sql語句
建立一個儲存過程用來讀取 create procedure testpercudureasdeclare col integerdeclare tablename varchar 100 declare sql as varchar 200 begin select top 0 qqnum into...
sql語句如何將表進行關聯查詢,sql語句如何將三個表進行關聯查詢?
select distinct a.caseno caseno,a.daterecived,a.buildid,a.contractno,max b.dateofrmi dateofrmi,c.venue,c.district from a left join b on a.caseno b.cas...
sql語句怎麼從一張表中查詢資料插入到另一張表中
查詢的資料bai插入到另一張表中du,分為zhi兩種情況 一dao種是目標表不存在,專另一種是目屬標表存在。工具 oracle 10g 源表資料 情況一 目標表不存在,建立表名為t1的表,將person表中全部資料插入 執行語句 create table t1 as select from pers...