當前位置:首頁 » 編程語言 » 安正sql筆試題
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

安正sql筆試題

發布時間: 2023-05-10 00:52:25

sql server 筆試題,求答案,急!!!!!!!!!!!!!!

這套筆試題你想拿上100分,也該懸賞上100分。
輸上基本上都有答案,看看SQL2005的書

create database STU --創建資料庫
use login1
go

create table STUDENT --建表
(
SNO char(10) primary key,
SNAME varchar(8),
SEX char(2) default 男,--默認值為男,只能輸入男或女
SAGE int,
SDEPT VARCHAR(20)
)

別的表類似。

Ⅱ 寫出下列SQL命令

1
select 男教授姓名,基礎工資,職務補貼 from 表
2.
select 教室編號,姓名,成果名稱,西部名稱 from 表 where 計算機系
3.select 實發工資 from 表
4.select 教師信息 from 表 where 年齡 >'20'
5.select 教師姓名,職稱 from 表 where 實發工資>'3000'
6.select 姓名,職稱,實發工資 from 計算機系

我都搞蒙了 怕給寫錯了... 表名是什麼 說清楚啊

Ⅲ sql筆試題

兩個表第一個store(store_id,city,space)
第二個employee(store_id,emp_id,salary)
1、每家店的平均工資
select t1.store_id,AVG(salary) from store t1 inner join employee t2 on t1.store_id=t2.store_di
group by t1.store_id

2、每個城市的平均工資
select t1.city,AVG(salary) from store t1 inner join employee t2 on t1.store_id=t2.store_di
group by t1.city
3、查找該城市存在員工工資低於1000的城市信息
select distinct t1.city
from store t1 inner join employee t2 on t1.store_id=t2.store_id
where t2.salary<1000

4、查找城市其職工工資有低於1000的該城市職工平均工資
select t1.city,avg(t2.salary)
from store t1 inner join employee t2 on t1.store_id=t2.store_id
where exists(select * from employee t3
where t1.store_id=t3.store_id and t3.salary<1000)
group by t1.city

其他的自己看吧,比較簡單
5、每個城市工資最高的員工信息
select t2.city,t1.* from employee t1 inner join store t2 on t1.store_id=t2.store_id
where exists(
select * from (
select t1.city,max(salary) from store t1 inner join employee t2 on t1.store_id=t2.store_di
group by t1.city) tt where t1.city=tt.city and t2.salary=tt.salary)
6、查詢每個城市的員工總工資,總的店面面積(?),門店的數量,員工數量,最高/最低工資數

Ⅳ SQL筆試試題

select ACCOUNT
,sum(RENT),sum().... from USERLIST a ,CHARGE b where a.TELEPHONE
=b.TELEPHONE(+)
group by a.ACCOUNT

上飢友面是oracle用的
通用的宴肢毀晌備是
select ACCOUNT
,sum(RENT),sum().... from USERLIST a left join CHARGE b on a.TELEPHONE
=b.TELEPHONE
group by a.ACCOUNT

Ⅳ Mysql|數據分析搞懂這15道SQL題目筆試就穩了

現有以下三張表

寫出SQL語句:查詢產品名稱=「A葯品」,在北京醫院2018~2019兩年的銷售「金額」,排除兩年銷售金額總和>1000000的醫院,要求查詢結果如下表。

寫出SQL語句,查詢題1的銷量表中2019年任意連續三個月銷售額都>0的醫院。
返回欄位:HospitalId,SalesMonth(2019年銷量>0的所有月份,逗號隔開)

以下是微信聊天記錄表

寫出SQL語句:按月統計2020年的微信回復率

發送次數 = 一組好友在一個自然天內的所有發送記錄計為1次。

回復率計算公式 =(發送次數在兩個自然天內被回復)/發送次數*100%

未完。。。 持續更新中。。。