SQL資料庫高手請進,SQL資料庫高手請進

時間 2022-08-20 05:55:04

1樓:匿名使用者

使用學號分組,統計通過和不通過的數量即可 不用管什麼成績了

比如某學號有7門課程,通過3門 不通過4門,那麼就可以知道通過率了

2樓:網上衝浪玩家

select a, (case b when '通過' then 1 else 0) as '通過科目數', count(a) as '總科目數', (case b when '通過' then 1 else 0)/count(a) as '通過率' from table group by a

3樓:

select b.xuehao, a.tongguo/a.total from

(select xuehao,nvl(sum(1),0) as tongguo from tab where b = 'tongguo' group by xuehao )a,

(select xuehao,sum(1) as total from tab group by xuehao) b

where a.xuehao = b.xuehao

4樓:匿名使用者

select a as '學號',sum(c) as '通過的科目個數'

from 表

where b='通過'

group by a

5樓:匿名使用者

給出具體的錶樣,各表之間通過什麼字段相關聯

sql資料庫使用者驗證語句,SQL資料庫使用者驗證語句

sql語句 select from tablename where userid userid and userpwd userpass 要不寫在儲存過程裡 set ansi nulls on set quoted identifier on goalter procedure dbo loginp...

SQL資料庫有什麼優點,相比SQL資料庫,圖資料庫有何優勢?

sql server的優點眾多,讓其在資料庫領域獨佔鰲頭,成為最受使用者歡迎的資料庫系統,下面就讓我們來了解sql server的優點和缺點。sql server是一個關聯式資料庫管理系統,它最初是由microsoft,sybase和ashton tate三家公司共同開發的於1988 年推出了第一個...

資料庫的SQL,什麼是資料庫 微軟的SQL又是什麼

public sqlconn as adodb.connection 定義一個資料庫連線sqlconn on error goto handler 發生錯誤時跳轉到 handler標籤 set sqlconn new adodb.connection 例項化sqlconn sqlconn.curso...