码迷,mamicode.com
首页 >  
搜索关键字:score    ( 2092个结果
SQL查询语句47题
1 select * from student 2 select * from score 3 --select * from grade 4 select * from course 5 select * from teacher 6 7 --1、 查询Student表中的所有记...
分类:数据库   时间:2014-09-09 23:01:49    阅读次数:417
数据库查询习题整理(二)
--26、查询存在有85分以上成绩的课程Cno. 需要用distinct除重select distinct cno from score where degree>85--27、查询出“计算机系“教师所教课程的成绩表。三个表join起来,筛选条件depart为计算机系select score.cno...
分类:数据库   时间:2014-09-09 22:58:19    阅读次数:835
数据库查询习题整理(一)
select * from studentselect * from teacherselect * from courseselect * from score上面原有几个新建的表从中查询一些数据--1、 查询Student表中的所有记录的Sname、Ssex和Class列。select Snam...
分类:数据库   时间:2014-09-09 22:51:29    阅读次数:596
autotools的详细使用
autotools是系列工具, 它主要由autoconf、automake、perl语言环境和m4等组成;所包含的命令有五个:     (1)aclocal     (2)autoscan     (3)autoconf     (4)autoheader     (5)automake 一、准备源代码     本项目有三个源文件,分别为score.cpp, sum....
分类:其他好文   时间:2014-09-09 18:24:19    阅读次数:267
2014-09-09(java软件开发工程——实战面试题3)
3、甲、乙、丙三人在玩牌,一共玩了一百盘,各盘的成绩都保存在Score表中。请用SQL语句查出三人各自的最高分在哪一局,输出局号和最高成绩。字段名属性备注IDInt(自增)局号OptionAInt甲的成绩OptionBInt乙的成绩OptionCInt丙的成绩答案:create table Test...
分类:编程语言   时间:2014-09-09 15:10:08    阅读次数:263
140908●SQL高级查询
等值连接查询 用where子句指定连接条件 例:查询“张旭“教师任课的学生成绩 select score.* from score,course,teacher where score.cno=course.cno and course.tno=teacher.tno and tname...
分类:数据库   时间:2014-09-09 11:43:08    阅读次数:211
慕课网-安卓工程师初养成-6-4 练习题
来源:http://www.imooc.com/ceping/1595下列数组的初始化正确的是()A int[ ] score = new int[ ];B int score[ ] = new int[ ] { 34, 90, 87, 54, 24 };C int[ ] score = new i...
分类:移动开发   时间:2014-09-07 23:40:35    阅读次数:222
慕课网-安卓工程师初养成-6-2 练习题
来源:http://www.imooc.com/ceping/1594定义一个数组 int[ ] scores = { 1, 2, 3, 4, 5, 6, 7 } ,数组中的 score[3] 指的是( )A 1B 2C 3D 4答案:D知识解析数组下标从 0 开始,因此 score[3] 表示数组...
分类:移动开发   时间:2014-09-07 23:39:45    阅读次数:313
HDOJ What is your grade?
题目:Problem Description“Point, point, life of student!”This is a ballad(歌谣)well known in colleges, and you must care about your score in this exam too....
分类:其他好文   时间:2014-09-07 10:57:54    阅读次数:257
查询出成绩不小于80的人的姓名
sql表结构如下username corse score 1 math 87 1 english 70 2 math 72 2 chinese 90 3 math 90 3 english 98 3 chinese 89解决思路:1)查...
分类:其他好文   时间:2014-09-06 01:02:52    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!