資料庫的題,麻煩高手看一下,急!!資料庫高手,麻煩幫解答考題!

時間 2022-07-31 09:20:03

1樓:匿名使用者

(1)select 讀者編號,圖書編號 from 表名 where 作者='張大海'

(2)select 讀者編號,借閱日期 from 表名 where 書名 like '%c#%'

(3)select 讀者編號,姓名 from 表名 where 借閱日期=getdate()

(4)select 姓名,已借數量,所借書名,借期還期 from 表名 where 等級='研究生'

(5) 你給的資料不詳細,答案不好寫

(6) select 讀者編號 from 表名 where 出版社 like '[^青山出版社]'

2樓:患上傷寒

select 讀者編號,圖書編號

from mydb

where 作者=『張大海』

select 讀者編號,借閱日期

from mydb

where 書名='%c#%

select 讀者編號,姓名

from mydb

where 借閱日期=getdate>=1 '

select 姓名、已借數量、所借書名、借期還期from mydb

where 學歷=『研究生』

你給的資料不詳細,答案不好寫

select 讀者編號

from mydb

where 出版社 like '[^青山出版社]'

……高手不算,只是曾經學過。似乎主要是考你where語句。mydb是題目所給的表名吧?!以上憑記憶做的,畢業蠻久了有點記憶模糊,ps:以上符號全是中文的。

急!!資料庫高手,麻煩幫解答考題!

3樓:匿名使用者

1.c2.a

3.b4.a

5.d6.a

7.c8.c

4樓:敬嵐翠

1.c(但有些書是答案a)

2.a3.b

4.a5.a

6.d7.c

8.c(見題2)

sql資料庫高手麻煩幫忙看看以下程式的執行結果 15

5樓:智障_大師

這是sql資料庫**?

6樓:一個小跳跳

輸出結果:

1021

0str

string being converted

請麻煩看一下這段sql問題在**, 怎麼修正? 謝謝!(問題不長) 50

7樓:匿名使用者

1.首先從你的寫法上看不出來customer起的作用,是客戶數,還是客戶標識,如果是客戶標識的話我勸你換一個寫法,另外很顯然,

2.你是誤解了group by 的含義,group by 應該是出來的資料是按啥分組,按哪個值來sum的,顯然不是customer_count,

3.用group by 謹記,出現在select 列表中的欄位,要是不在統計函式sum count...裡用到,就要一定放在group by 裡面

我試著寫一下,我想你恐怕是這個意思:

select

month,

count(distinct customer) as customer_count

from

customers

group by

month

order by customer_count

8樓:

select

max(month) month,

customer as customer_countfrom

customers

group by

customer

order by

customer

9樓:

select

month,

sum(distinct customer) as customer_count

from

customers

group by

customer_count,month

order by

customer_count

group by 聚合函式查詢列要包含進來

10樓:

你想查什麼要說一下,好幫你分析

group by 後面不能接計算列,在這個查詢裡應該接month

11樓:匿名使用者

把sum改成count,group by month

急!!資料庫高手,麻煩幫解答考題

1 資料庫系統的核心是 c a 資料庫 b 作業系統 c 資料庫管理系統 d 檔案 2 資料庫db 資料庫系統dbs 資料庫管理系統dbms三者之間的關係是 c a dbs包括db和dbms b dbms包括db和dbs c db包括dbs和dbms d dbs包括db,也就是dbms 3 在關係型...

sql資料庫一道題, SQL 資料庫,一道題

1create table 學生 學號 char 9 not null primary key,姓名 varchar 20 not null,性別 char 2 check 性別 男 or 性別 女 年齡 int,專業 varchar 20 2update 課程 set 課程名 sql資料庫 whe...

請教一道資料庫的題目,急!請教一道資料庫考題

select student.sid from select sid,score from sc where cid 1 student select sid,score from sc where cid 2 score where student.score score.score and st...