1樓:藏漂生活這幾年
當然可以了啊 這個很簡單的。
假設 表明是 number 。主要的思路就是,在斷層處有這樣的數出現,就是有一個大於一個id,但是它跟著個id不連貫的。取出這樣的數。
你這個問題是間斷問題,缺失範圍。 一般有兩種情況,1,求出間斷點。2,求出間斷範圍。
(你要是想填充間斷範圍也可以)
表 和 列 都是number
1,求間斷點
select number+1 from number a
where not exists (select 1 from number b where b.number=a.number+1)
and number<(select max(number) from number)
2,間斷範圍
select number+1 as range,(select min(number) from number b where b.number>a.number)-1 as endrange from number a
where not exists (select 1 from number b where b.number=a.number+1)
and number<(select max(number) from number)
2樓:
declare @tmp table,@i intset @i=100000
while(@i<=130000)
if not exitst select * from table where id=@i
begin
insert into @tmp (id) values(@id)set @i=@i+1
endselect * from @tmp
3樓:匿名使用者
是什麼資料庫?oracle的話,我會,其它的不會
在oracle資料庫中,怎樣查詢出只有一個欄位的表的重複資料?
4樓:匿名使用者
方法一:可以通過group by 進行分組。
sql:select username,count(username) from tablename grop by username;
解釋:以上sql就是通過分組函式讀版取出tablename表中username的值和每個不
權同值的統計個數。
方法二:可以通過distinct函式 進行去重查詢。
sql:select distinct username from tablename
解釋:本sql就是查詢出所有的tablename表中的username值(不重複)。
mysql sql語句有沒有一種方式能查詢一個欄位的值是否包含在另一欄位中? 20
5樓:匿名使用者
select * from tablea where username like '%admin%'
6樓:匿名使用者
select * from tablea where patindex('%admin%',username)<>0
請問怎麼在資料庫所有表中查詢一個欄位的值
7樓:朩朩熋
首先要查詢該欄位在oracle的哪個表裡面
select * from all_tab_cols t where t.column_name = '所查欄位'
然後再查詢該欄位的值在這張表中所對應的記錄
8樓:尚仙
當只知道欄位名,而不知其屬於哪個表時,可通過以下方法先獲得其所屬的表,再查詢該欄位值:
oracle資料庫
select table_name from user_tab_columns where column_name='欄位名'
sqlserver資料庫
select c.object_id,c.name,o.object_id,o.name from sys.columns c
left join sys.objects oon c.object_id=o.object_idwhere o.type='u' and c.name='欄位名'
說明:如果此欄位名在多張表中存在,則需要自行判斷要查詢的表。
在oracle資料庫如何查詢某個欄位在哪些表中出現過
育知同創教育 在oracle資料庫查詢某個欄位在哪些表中出現過的方法是關聯所有的表然後查詢欄位的值,如果為空就是沒有出現過。在之前所使用的查詢操作之中,都是從一張表之中查詢出所需要的內容,那麼如果現在一個查詢語句需要顯示多張表的資料,則就必須應用到多表查詢的操作,而多表查詢的語法如下 select ...
怎樣從資料庫中查詢一週內的資訊
day忘不掉的痛 使用sql語句查詢日期在一週內的資料 select from shoporder where datediff week,ordtime,getdate 1 0 查詢當天日期在一週年的資料 select from shoporder where datediff day,ordti...
sql如何查詢空值的欄位,sql資料庫查詢中,空值查詢條件怎麼寫?
小凝聊娛樂 sql查詢空值的欄位寫法 select a.欄位 from student a where a.欄位 like student為表名 查詢類似空值的寫法 1 查詢名稱有退格鍵 select from t bd item info where charindex char 8 item n...