sql斷點查詢

2021-05-24 06:30:46 字數 904 閱讀 2830

例如我們要進行如下查詢

乙個表有個自增主鍵id,  裡面有n行資料

id  1

id  2

id  3

id  7

id  8

id  12

id  9990

id  9993

id  9994

id  9995

要查出斷掉的id :4  5  6  9 10 11 ......9991 9992

查詢語句為

declare

@minid int

declare

@maxid int

declare

@count int

declare

@total int

declare

@i int

declare

@n int

select

@minid=

min(id)

from area

select

@maxid=

max(id)

from area

select

@total=

count

(1)from area

set@i=@minid set @count=0 set @n=0

while

(@i<@maxid and @n<@maxid-@total)

begin

select @count=

count

(1)from area where id=@i

if @count=0

begin

print @i

set @n=@n+1

endset @i=@i+1

end

使用 Mysql 做斷點記錄查詢

測試表結構 表中測試記錄 flowid為各個分店的流水號,系統異常時,在這張彙總表中會發生斷點的現象 查詢sql select name as 分店,flowid as 分店流水號,date as 日期 from store s1 where not exists select from store...

gdb斷點相關3 臨時斷點 條件斷點 忽略斷點

include include typedef struct ex st int main int argc,char argv printf d,d,d,d n st.a,st.b,st.c,st.d return0 在使用gdb除錯時,如果想讓斷點只生效一次,可以使用tbreak命令 縮寫為tb...

sql查詢慢 查詢

select creation time n 語句編譯時間 last execution time n 上次執行時間 total physical reads n 物理讀取總次數 total logical reads execution count n 每次邏輯讀次數 total logical ...