資料庫小結2 提公升

2022-02-15 04:03:04 字數 2961 閱讀 7393

(1,2,3)

5、顯示文章、提交人和最後回覆時間

select a.title,a.username,b.adddate from table a,(select max(adddate) adddate from table

table1.field1=table2.field1 )

11、四表聯查問題:

select * from a left inner join b on a.a=b.b right inner join c on a.a=c.c inner join d on

a.a=d.d where .....

12、日程安排提前五分鐘提醒

sql: select * from 日程安排 where datediff('minute',f開始時,getdate())>5

13、一條sql 語句搞定資料庫分頁

select top 10 b.* from (select top 20 主鍵字段,排序字段 from 表名 order by 排序字段 desc)

a,表名 b where b.主鍵字段 = a.主鍵字段 order by a.排序字段

具體實現:

關於資料庫分頁:

declare @start int,@end int

@sql nvarchar(600)

set @sql=』select top』+str(@end-@start+1)+』+from t where rid not in(select top』+str

(@str-1)+』rid from t where rid>-1)』

exec sp_executesql @sql

注意:在top後不能直接跟乙個變數,所以在實際應用中只有這樣的進行特殊的處理。rid為乙個標識列

,如果top後還有具體的字段,這樣做是非常有好處的。因為這樣可以避免 top的字段如果是邏輯索引的

,查詢的結果後實際表中的不一致(邏輯索引中的資料有可能和資料表中的不一致,而查詢時如果處在

索引則首先查詢索引)

14、前10條記錄

select top 10 * form table1 where 範圍

15、選擇在每一組b值相同的資料中對應的a最大的記錄的所有資訊(類似這樣的用法可以用於論壇每月排

行榜,每月熱銷產品分析,按科目成績排名,等等.)

select a,b,c from tablename ta where a=(select max(a) from tablename tb where tb.b=ta.b)

16、包括所有在 tablea 中但不在 tableb和tablec 中的行並消除所有重複行而派生出乙個結果表

(select a from tablea ) except (select a from tableb) except (select a from tablec)

17、隨機取出10條資料

select top 10 * from tablename order by newid()

18、隨機選擇記錄

select newid()

19、刪除重覆記錄

1),delete from tablename where id not in (select max(id) from tablename group by

col1,col2,...)

2),select distinct * into temp from tablename

delete from tablename

insert into tablename select * from temp

評價: 這種操作牽連大量的資料的移動,這種做法不適合大容量但資料操作

3),例如:在乙個外部表中匯入資料,由於某些原因第一次只匯入了一部分,但很難判斷具體位置,這

樣只有在下一次全部匯入,這樣也就產生好多重複的字段,怎樣刪除重複字段

alter table tablename

--新增乙個自增列

add column_b int identity(1,1)

delete from tablename where column_b not in(

select max(column_b) from tablename group by column1,column2,...) alter table tablename

drop column column_b

20、列出資料庫裡所有的表名

select name from sysobjects where type='u' // u代表使用者

21、列出表裡的所有的列名

select name from syscolumns where id=object_id('tablename')

22、列示type、vender、pcs欄位,以type欄位排列,case可以方便地實現多重選擇,類似select 中的

case。

select type,sum(case vender when 'a' then pcs else 0 end),sum(case vender when 'c' then pcs

else 0 end),sum(case vender when 'b' then pcs else 0 end) from tablename group by type

顯示結果: type vender pcs

電腦 a 1

電腦 a 1

光碟 b 2

光碟 a 2

手機 b 3

手機 c 3

23、初始化表table1

truncate table table1

24、選擇從10到15的記錄

select top 5 * from (select top 15 * from table order by id asc) table_別名 order by id

desc

資料庫小結

在最近做的專案中碰到了資料庫方面的問題,對遇到的問題和處理方法做乙個小總。1.左 右 連線查詢與多變聯合查詢的區別。假定現在有兩張表user info和adviser verify info表,使用者表中user id為10000的使用者在adviser verify info表中可能有對應的記錄,...

DB2資料庫知識小結

1linux系統連線db2資料庫 db2connect to dbtest 資料庫名稱 然後就可以直接寫sql 1 啟動資料庫例項命令 db2start 關閉資料庫 db2stop 2 資料庫表結構 檢視 儲存結構匯出 db2look d 資料庫名稱 e a x i 資料庫使用者名稱 w 密碼 o ...

資料庫索引小結

正文內容本身就是一種按照一定規則排列的目錄稱為 聚集索引 在正文之外建立的目錄稱為 非聚集索引 對於索引的優化,從索引實現本身 1.對於等職查詢使用雜湊結構的索引,對含非等值查詢的使用b樹。2.壓縮索引鍵值,減少索引層數 對於使用者的選擇來說 1.對於查詢乙個範圍的值,或者多個記錄的值時使用聚集索引...