乙個問題的多種解法

2021-09-22 06:17:42 字數 579 閱讀 4929

不能在這麼依靠電腦了!

什麼都要自己親手來寫才可以的!

今天碰到了乙個問題,是關於sql的.

如何取的第10條記錄?

當時想到使用:

先將前10條拿出來,然後在取最後一條.

但是卻忘了該怎麼寫.是不是很丟臉.

其實下來想想,這樣不就可以了嗎!

select top 1 * from(select top 10 * from tablename order by id desc) order by id

我準備把這個記載下來.

2)使用游標(cursor)

declare you scroll cursor

for 

select * from table

open you

select 游標結果行數=@@cursor_rows              --第2000行

fetch absolute 2000 from you

當然了,使用這種方法不是很好.除非對某一行進行特殊處理.

後來上網查了一下,原來有那麼多的方法

kenty

乙個老鼠走迷宮問題的python解法

今天在查詢馬爾科夫鏈的過程中,在網上看到乙個有意思的問題,於是用python將其做了實現和改進,題目如下 如下圖所示的迷宮共有9個格仔,相鄰格仔有門相通,9號格仔就是迷宮出口.整個迷宮將會在5分鐘後坍塌.1號格仔有乙隻老鼠,這只老鼠以每分鐘一格的速度在迷宮裡亂竄 它通過各扇門的機會均等 求此老鼠在迷...

記錄乙個bug的解法

add by duanyf 20121105 start int index 0 string str index null int pic index 0 string type utils.ensurenotnull intent.gettype log.d tag,uri is uri if ...

最大子串行和問題的多種解法

返回最大和 int maxsum 1 const int a,int n else return maxsum 返回最大和,同時列印出子串行邊界 intmaxsum 2 const int a,int n thissum a j if thissum maxsum else cout start e...