SQL面试题

Zhen (Evan) Wang 2012-01-12 11:06:03
刚看到的时候,感觉挺简单的,但是自己真的写出来却不是那么容易。呵呵,今天算是给自己上了一课。
重新温习了下SQL语句。
首先,创建数据表并插入一定量的数据
create table Grade
(
GradeID int identity(1,1) primary key,
SNO int,
CNO int,
Score float
)
insert into Grade(SNO,CNO,Score) values(100,10,100);
insert into Grade(SNO,CNO,Score) values(100,11,45);
insert into Grade(SNO,CNO,Score) values(100,12,30);

insert into Grade(SNO,CNO,Score) values(101,10,87);
insert into Grade(SNO,CNO,Score) values(101,11,100);
insert into Grade(SNO,CNO,Score) values(101,12,87);

insert into Grade(SNO,CNO,Score) values(102,10,87);
insert into Grade(SNO,CNO,Score) values(102,11,45);
insert into Grade(SNO,CNO,Score) values(102,12,100);

insert into Grade(SNO,CNO,Score) values(103,12,50);



问题如下:
--查询每门课程的平均(最高/最低)分及课程号
--查询每门课程第1名的学生的学号
--查询每门课程中超过平均分的所有学生的学号

请您记录下自己的SQL语句与返回结果。没测试过的就别贴出来了。

另外,想问下,谁有MySql创建存储过程的例子,比较全的。
最好能像这样子的(MySql参数神马的好像用in out,inout,本人只会比较简单的,\(^o^)/~ )
(SQL Server)

create proc [dbo].[Product_Insert]
@ProductCategoryID int,
@ProductName nvarchar(50),
@ProductImage image,
@Description text,
@Price smallmoney
as
--Start the transaction
begin transaction
declare @ProductImageID int
insert into ProductImages(ProductImage) values(@ProductImage)
--Roll back the transaction if there were any error
if @@error<>0
begin
--Roll back the transaction
rollback
--Raise an error and return
raiserror('Error insert into ProductImages.',16,1)
return
end
set @ProductImageID=@@identity

insert into Products(ProductCategoryID,ProductName,ProductImageID,Description,Price)
values(@ProductCategoryID,@ProductName,@ProductImageID,@Description,@Price)
--Roll back the transaction if there were any error
if @@error<>0
begin
--Roll back the transaction
rollback
--Raise an error and return
raiserror('Error insert into Products.',16,1)
return
end
commit


(晚上我再贴上自己的语句以及查询结果。O(∩_∩)O~,顺便温习下T-SQL,嘿嘿。分数不多。)
...全文
340 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
ciel2013 2012-03-01
  • 打赏
  • 举报
回复
学习了
nullnullcao 2012-02-29
  • 打赏
  • 举报
回复
select cno,avg(score) as '平均分' from grade group by cno
select *from grade ,(select cno,max(score) as 'Maxs' from grade group by cno) as T where grade.score = T.maxs and T.cno=grade.cno
select *from grade,(select cno,avg(score) as 'avgs' from grade group by cno) as T where grade.score>T.avgs and grade.cno=T.cno
Zhen (Evan) Wang 2012-01-13
  • 打赏
  • 举报
回复
最近用MySQL数据库,发现了太多问题。用存储过程插入数据时,设置成UTF8格式,字段无论设置多长,都报字段长度不足。直接sql语句执行,就没问题了,这是让人蛋疼。
现在乱码问题搞定了,就剩二进制图片显示了。不用webservice,我知道怎么做,用webservice,我不给直接传出Stream,只好穿object类型数据。但是到现在我也没解析出来。。。
Zhen (Evan) Wang 2012-01-13
  • 打赏
  • 举报
回复
昨晚上出差的同事回来了,忘记了,呵呵,对不住各位。
--查询每门课程的平均(最高/最低)分及课程号
select avg(Score) as avg,CNO from Grade group by(CNO);

--结果
--avg CNO
--90.25 10
--58.75 11
--63.4 12

--查询每门课程第1名的学生的学号;
select SNO from Grade where score in (select max(Score)from Grade group by(CNO));

--结果
--SNO
--102
--101
--100

--查询每门课程中超过平均分的所有学生的学号
create view vgrade(avgs)
as
select avg(score) from grade group by(CNO)

select distinct(SNO) from Grade,vgrade where score>=avgs;

--结果
--SNO
--100
--101
--102
shuohuameijiang 2012-01-13
  • 打赏
  • 举报
回复
路过看看
水族杰纶 2012-01-12
  • 打赏
  • 举报
回复
膜拜小爱蝈蝈
黄_瓜 2012-01-12
  • 打赏
  • 举报
回复
---------------------------------
-- Author: liangCK 小梁
-- Title : 查每个分组前N条记录
-- Date : 2008-11-13 17:19:23
---------------------------------

--> 生成测试数据: #T
IF OBJECT_ID('tempdb.dbo.#T') IS NOT NULL DROP TABLE #T
CREATE TABLE #T (ID VARCHAR(3),GID INT,Author VARCHAR(29),Title VARCHAR(39),Date DATETIME)
INSERT INTO #T
SELECT '001',1,'邹建','深入浅出SQLServer2005开发管理与应用实例','2008-05-10' UNION ALL
SELECT '002',1,'胡百敬','SQLServer2005性能调校','2008-03-22' UNION ALL
SELECT '003',1,'格罗夫Groff.J.R.','SQL完全手册','2009-07-01' UNION ALL
SELECT '004',1,'KalenDelaney','SQLServer2005技术内幕存储引擎','2008-08-01' UNION ALL
SELECT '005',2,'Alex.Kriegel.Boris.M.Trukhnov','SQL宝典','2007-10-05' UNION ALL
SELECT '006',2,'飞思科技产品研发中心','SQLServer2000高级管理与开发','2007-09-10' UNION ALL
SELECT '007',2,'胡百敬','SQLServer2005数据库开发详解','2008-06-15' UNION ALL
SELECT '008',3,'陈浩奎','SQLServer2000存储过程与XML编程','2005-09-01' UNION ALL
SELECT '009',3,'赵松涛','SQLServer2005系统管理实录','2008-10-01' UNION ALL
SELECT '010',3,'黄占涛','SQL技术手册','2006-01-01'

--SQL查询如下:

--按GID分组,查每个分组中Date最新的前2条记录


--1.字段ID唯一时:
SELECT * FROM #T AS T WHERE ID IN(SELECT TOP 2 ID FROM #T WHERE GID=T.GID ORDER BY Date DESC)

--2.如果ID不唯一时:
SELECT * FROM #T AS T WHERE 2>(SELECT COUNT(*) FROM #T WHERE GID=T.GID AND Date>T.Date)

--SQL Server 2005 使用新方法

--3.使用ROW_NUMBER()进行排位分组
SELECT ID,GID,Author,Title,Date
FROM
(
SELECT rid=ROW_NUMBER() OVER(PARTITION BY GID ORDER BY Date DESC),*
FROM #T
) AS T
WHERE rid<=2

--4.使用APPLY
SELECT DISTINCT b.*
FROM #T AS a
CROSS APPLY
(
SELECT TOP(2) * FROM #T WHERE a.GID=GID ORDER BY Date DESC
) AS b


--结果
/*

ID GID Author Title Date
---- ----------- ----------------------------- --------------------------------------- -----------------------
003 1 格罗夫Groff.J.R. SQL完全手册 2009-07-01 00:00:00.000
004 1 KalenDelaney SQLServer2005技术内幕存储引擎 2008-08-01 00:00:00.000
005 2 Alex.Kriegel.Boris.M.Trukhnov SQL宝典 2007-10-05 00:00:00.000
007 2 胡百敬 SQLServer2005数据库开发详解 2008-06-15 00:00:00.000
009 3 赵松涛 SQLServer2005系统管理实录 2008-10-01 00:00:00.000
010 3 黄占涛 SQL技术手册 2006-01-01 00:00:00.000

(6 行受影响)
*/















--得到每组前几条数据
--假設每組Col1中, Col3不會重復

--建立測試環境
Create Table TEST
(Col1 Varchar(10),
Col2 Varchar(10),
Col3 Int)
--插入數據
Insert TEST Select 'BD1V','Label', 4
Union All Select 'BD1V', 'BATT', 2
Union All Select 'BD1V', 'ODD', 3
Union All Select 'BD1V', 'HDD', 5
Union All Select 'BD1V', 'LCD', 1
Union All Select 'BD1W','HDD', 3
Union All Select 'BD1W','RAM', 8
Union All Select 'BD1W','TP CABLE', 5
Union All Select 'BD1W','LCD', 6
Union All Select 'BD1W','Label', 2
Union All Select 'BL3', 'LCD CABLE', 7
Union All Select 'BL3', 'LABEL', 6
Union All Select 'BL3', 'LCD', 5
Union All Select 'BL3', 'RAM', 1
Union All Select 'BL3D', 'Label', 4
GO
--測試
--方法一:
Select Col1, Col2, Col3 From TEST A
Where (Select Count(*) From TEST Where Col1 = A.Col1 And Col3 > A.Col3) < 3
Order By Col1, Col3 Desc
--方法二:
Select Col1, Col2, Col3 From TEST A
Where Exists (Select Count(*) From TEST Where Col1 = A.Col1 And Col3 > A.Col3 Having Count(*) < 3)
Order By Col1, Col3 Desc
--方法三:
Select Col1, Col2, Col3 From TEST A
Where Col3 In (Select TOP 3 Col3 From TEST Where Col1 = A.Col1 Order By Col3 Desc)
Order By Col1, Col3 Desc
GO
--刪除測試環境
Drop Table TEST
--結果
/*
Col1 Col2 Col3
BD1V HDD 5
BD1V Label 4
BD1V ODD 3
BD1W RAM 8
BD1W LCD 6
BD1W TP CABLE 5
BL3 LCD CABLE 7
BL3 LABEL 6
BL3 LCD 5
BL3D Label 4
*/
you_tube 2012-01-12
  • 打赏
  • 举报
回复
水族杰纶 2012-01-12
  • 打赏
  • 举报
回复
呵呵.

11,849

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server 非技术版
社区管理员
  • 非技术版社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧