1樓:匿名使用者
select * from 表 a where a.a1=條件1 and a.a2=條件2
group by 所有的列
祝樓主好運
sql查詢兩個欄位相同的記錄
sql server如何查詢出某個欄位重複出現兩次以上的資料
2樓:
用關鍵字 stinct
select stinct 欄位
不重複的意思
怎麼檢視資料庫表中某個欄位的值有哪些重複記錄
sql語句如何查詢一個表中某兩個欄位的相同資料?
3樓:
除重select distinct a.id as aid,a.name as aname,b.
id as bid,b.name as bname from a inner join b on(a.name=b.
name and a.id=b.id)
不除重select a.id as aid,a.name as aname,b.
id as bid,b.name as bname from a inner join b on(a.name=b.
name and a.id=b.id)
4樓:匿名使用者
select * from a
inner join b on a.name = b.name and a.id = b.id
where a.name = '張三' and a.id = '008'
內連線即可
5樓:輕癮
select name,id,count(*) from a group by name,id
6樓:青龍襲天
select * from a where a.name=b.name and a.id=b.id
應該是這個了吧
一個表中有重複記錄如何用sql語句查詢出來?
7樓:進濱海檢洲
不知道你什麼資料庫.
如果資料庫支援
row_number()
函式的話,
倒是很省事的.
--首先建立測試表
create
table
test_delete(
name
varchar(10),
value
int);
go--
測試資料,其中
張三100
與王五80
是完全一樣的
insert
into
test_delete
select
'張三',
100union
allselect
'張三',
100union
allselect
'李四',
80union
allselect
'王五',
80union
allselect
'王五',
80union
allselect
'趙六',
90union
allselect
'趙六',
70go
--首先查詢一下,
row_number
效果是否滿足預期
select
row_number()
over
(partition
byname,
value
order
by(select1))
asno,
name,
value
from
test_delete
noname
value
-----
----------
-----------1李四
801王五802王五
801張三1002張三
1001
趙六701趙六
90從結果上可以看到,如果有重複的,完全一樣的話,no是有大於1的。
查詢一個表中的兩個欄位值相同的資料 5
8樓:
/*難道是下面
的這種?
select *
from linkuser
where lname=username; */意思是去除重複的?
select * from linkuser awhere exists (select 1 from (select min(id),lname from linkuser group by lname) b
where a.id=b.id)
9樓:匿名使用者
按照lname
uername
這2個欄位分組,查出來組內條數count(*) 大於1的就是了
重複的兩個字的暱稱,兩個字重複的好聽的名字有哪些
萋萋 依依 嫋嫋 采采 盈盈 燦燦 翩翩 蓉蓉 漠漠 熙熙 喃喃 洛洛 冉冉 悠悠 玫玫,瑤瑤,雯雯,妍妍,璐璐,盈盈,可可,婷婷,豆豆,宇宇 兩個字重複的好聽的名字有哪些 女生 暖暖 娜娜 寧寧 晶晶 秀秀 甜甜 貝貝 冰冰 花花 文文 微微 男生 凱凱 豆豆 琦琦 呆呆 珊珊,彤彤,笑笑,龍龍,...
如何用SQL語句查詢兩張表中的相同欄位資料
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語句查詢...
求兩個重複字的小名,兩個字的男生小名重複的
婷婷 萌萌 早早 欣欣 圓圓 媛媛 玥玥 悅悅 琳琳 雅雅 冰冰 茜茜 晶晶 菁菁 婧婧 琪琪 香香 文文 佳佳 雪雪 夢夢 詩詩 薇薇 笑笑 涵涵 蕊蕊 婉婉 瑤瑤 瑩瑩 盈盈 妮妮 潔潔 奇奇 童童 祥祥 楠楠 冉冉 然然 珍珍 豔豔 燕燕 茹茹 蓉蓉 琴琴 萱萱 璇璇 可可 珂珂 聰聰 靜靜 ...