码迷,mamicode.com
首页 >  
搜索关键字:student    ( 6827个结果
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
数据库查询习题整理(一)
select * from studentselect * from teacherselect * from courseselect * from score上面原有几个新建的表从中查询一些数据--1、 查询Student表中的所有记录的Sname、Ssex和Class列。select Snam...
分类:数据库   时间:2014-09-09 22:51:29    阅读次数:596
SQL 数据库 练习
create database mydb3gouse mydb3 create table student( --学号 sno varchar(3) not null primary key, --姓名 sname varchar(4) not null, --性别 ...
分类:数据库   时间:2014-09-09 17:38:09    阅读次数:393
140908●SQL练习
create database taskgouse taskcreate table student( --学号 sno varchar(3) not null primary key, --姓名 sname varchar(4) not null, --性别 s...
分类:数据库   时间:2014-09-09 11:54:28    阅读次数:268
Spring-Mybatis整合中的一对多
一如Hibernate中的两个对象之间的关系在MyBatis中也关于两个对象之间的关联关系的描述!直接进入正题。 为了测试数据简单使用表的字段较少! 两个表student,teacher。student中的字段:id,name,supervisor_idteacher中的字段:id,name。本demo使用的技术Spring 和Mybatis的整合。项目简单的截图项目中引入的jar包现在介绍各...
分类:编程语言   时间:2014-09-08 10:53:36    阅读次数:389
《Effective C++》笔记:II
条款4:Make sure that objects are initialized before they're used.译:确定对象被使用前已先被初始化.C++的初始化先来一个Java的初始化class Student{ private String Name; ...
分类:编程语言   时间:2014-09-07 19:42:55    阅读次数:289
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
double类型之四舍五入
题目:A -TutorTime Limit:1000MSMemory Limit:65535KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionLilin was a student of Tonghua Normal University. ...
分类:其他好文   时间:2014-09-06 13:35:34    阅读次数:258
通过内省机制设置JavaBean
一、步骤: 1)使用PropertyDescriptor类获取属性描述者对象//pd引用Student的name属性PropertyDescriptor pd = new PropertyDescriptor("name", Student.class); 2)通过getWriteMethod(.....
分类:编程语言   时间:2014-09-04 22:02:50    阅读次数:284
Swift类型检查与转换
继承会发生在子类和父类中,如图15-4所示,是一系列类的继承关系类图,Person是类层次结构中的根类,Student是Person的直接子类,Worker是Person的直接子类。这个继承关系类图的具体实现代码如下:class Person {    var name : String    var age : Int        func description() -> String {...
分类:编程语言   时间:2014-09-04 20:58:10    阅读次数:455
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!