青禾BBS資料庫查詢語句(動網)

2022-07-31 21:00:17 字數 1464 閱讀 1284

資料字典:

查詢使用者資訊: 

select * from dbo.dv_user where username='

茗跡'

查詢使用者發帖總數:

select usertopic from dbo.dv_user where username='

茗跡'

查詢使用者被刪的帖子數:

select userdel from dbo.dv_user where username='

茗跡'

查詢使用者所有發帖內容:

select * from dbo.dv_topic where postusername='

茗跡'

查詢使用者有回覆的帖子:

select * from dbo.dv_topic where postusername='

茗跡' and child!=0 order by child desc

查詢某一主題帖的回覆內容所在表:

select posttable from dbo.dv_topic where topicid='

130250

'

查詢某使用者的所有回覆貼:

select * from dv_bbs2 where username='

茗跡'

查詢某一主題帖對應記錄:

select * from dbo.dv_topic where topicid='

130250

'

查詢某一主題帖對應的回覆記錄:

select * from dbo.dv_bbs2 where rootid='

130250

'

查詢某一主題帖回覆人使用者名稱:

select distinct username from dbo.dv_bbs2 where rootid='

130250

'

查詢某使用者所發主題帖的所有回覆帖記錄:

select * from dv_bbs2 where rootid =any(select topicid from dbo.dv_topic where postusername='

茗跡' and child!=0)

查詢某使用者所發主題帖的所有回覆者記錄和回覆次數: 

select username as '

使用者名稱',count(*) as '

回覆次數

' from dv_bbs2 where rootid =any(select topicid from dbo.dv_topic where postusername='

茗跡' and child!=0) group by username

資料庫查詢語句

表示要查詢所有列 select from t student 查詢所有人的姓名資訊 select stu name from t student 查詢張乾的手機號和位址 select stu mobile,stu address from t student where stu name 張乾 查詢...

資料庫 查詢語句

隱式連線 select coursename,teachername from courses inner join teachers on courses.teacherid teahcer.teacherid 等價於顯式連線 select coursename,teachername from ...

資料庫高階查詢語句

巢狀子查詢 子查詢的優勢和特點 使用靈活,可以成為sql語句的多個部分 子查詢作為查詢條件使用 子查詢作為臨時表使用 降低sql語句的複雜度,提高sql語句的可讀性 作為臨時表使用 例 select stuname subject,score from select from stuinfo whe...