當前位置:首頁 » 編程語言 » 一個人的sql語句
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

一個人的sql語句

發布時間: 2023-08-20 13:16:21

1. 用sql語句查詢同一天同一人出現次數超過2次的人名

select name,date,count(*) count from users group by date,name having count(*)=max(count)

2. 查詢與某一個人同省份的所有學生的信息的sql語句

select * from 表 where [表內省份欄位] = (select [表內省份欄位] from 表 where [表中姓名欄位] ='[某一個人]')
或者:
select * from 表 as tba where EXISTS(select 1 from 表 where [表中姓名欄位] ='[某一個人]' and [表內省份欄位]=tba. [表內省份欄位])