create table #temp1
(syopid nvarchar(16),
maname nvarchar(20),
systemtime datetime
)insert into #temp1(syopid,maname,systemtime)
select 'zr1','ma001','2009-07-01 00:00:00' union all
select 'zr1','ma002','2009-07-02 00:00:00' union all
select 'zr1','ma003','2009-07-03 00:00:00' union all
select 'lidong1','ma001','2009-07-01 00:00:00' union all
select 'lidong1','ma002','2009-07-02 00:00:00' union all
select 'lidong1','ma003','2009-07-03 00:00:00' union all
select 'wangchubo1','ma001','2009-07-01 00:00:00' union all
select 'wangchubo1','ma002','2009-07-02 00:00:00' union all
select 'wangchubo1','ma003','2009-07-03 00:00:00'
select syopid,maname,systemtime from #temp1 where systemtime in
(select systemtime from
(select row_number() over(order by systemtime) as id,systemtime from #temp1 group by systemtime) a
where a.id=1
) drop table #temp1
list 取第幾個元素
usr bin python word a b c d e f g 取第二個元素 a word 2 print a is a 取第2 3個元素 b word 1 3 print b is print b 取前2個元素 c word 2 print c is print c 取所有元素 d word ...
輸出班級第幾個學生的平均成績
問題 輸出班級第n個學生的平均成績。每個學生有英語 數學 語文 計算機4科成績。若干個學生的4門成績構成乙個 可以用二維陣列儲存,每行代表乙個學生的4門成績。以為要計算某個學生的平均成績,需要快速定位到該生成績的起始位置,依次取出各門成績進行累加。所以定義乙個指向4個float型組成一維陣列的行指標...
jquery獲取第幾個元素的方法總結
jquery獲取第幾個元素的方法總結 使用jquery時經常會遇到,選擇器選擇一組元素後,需要在這組元素中找到第幾個元素。jquery中使用eq 方法找到第幾個元素或第n個元素,jquery中eq 的使用如下 eq 選擇器選取帶有指定 index 值的元素。index 值從 0 開始,所有第乙個元素...