一道金蝶校园招聘试题数据库笔试题
某彩票網站的一個數據表T_DATA有7個數字字段(F1,F2~F7),用于存儲彩民購買的彩票上的7個號碼(順序按數字從小到大分別放在F1~F7中):
| T_DATA | |||||||
| FNAME | F1 | F2 | F3 | F4 | F5 | F6 | F7 |
| 張三 | 1 | 3 | 5 | 12 | 21 | 22 | 30 |
| 李四 | 4 | 6 | 12 | 14 | 24 | 28 | 29 |
| … | … | … | … | … | … | … | … |
搖獎搖出了一組號碼也是7個數字:
3,12,14,17,19,22,30
只要有4個號碼符合的用戶就會獲獎,請使用一條符合SQL92規范的語句把中獎的用戶查詢出來。
declare mycur ?cursor scroll for select id,fname,f1,f2,f3,f4,f5,f6,f7 ?from T_DATA
open mycur
declare @fid int;
declare @fname varchar(50);
declare @f1 int;
declare @f2 int;
declare @f3 int;
declare @f4 int;
declare @f5 int;
declare @f6 int;
declare @f7 int;
declare @count int;
?
fetch first ?from mycur into @fid,@fname,@f1,@f2,@f3,@f4,@f5,@f6,@f7;
while (@@fetch_status = 0)
begin
set @count=0;
? if(@f1 in(3,12,14,17,19,22,30)) ?SET @count = @count + 1;
? ?if( @f2 in(3,12,14,17,19,22,30)) ?SET @count = @count + 1;
? ?if( @f3 in(3,12,14,17,19,22,30)) ?SET @count = @count + 1;
? ?if( @f4 in(3,12,14,17,19,22,30)) ?SET @count = @count + 1;
? ?if(@f5 in(3,12,14,17,19,22,30)) ? SET @count = @count + 1;
? ?if(@f6 in(3,12,14,17,19,22,30)) ?SET @count = @count + 1;
? ?if( @f7 in(3,12,14,17,19,22,30)) ?SET @count = @count + 1;
if(@count>=4)
print(@fname);?
fetch next from mycur into @fid,@fname,@f1,@f2,@f3,@f4,@f5,@f6,@f7;
end
close mycur;
? ?
總結
以上是生活随笔為你收集整理的一道金蝶校园招聘试题数据库笔试题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 写给在深圳奋斗的我
- 下一篇: trim的返回值php,php trim