码迷,mamicode.com
首页 >  
搜索关键字:employee    ( 1484个结果
T-SQL变量
T-SQL中变量分为全局变量和局部变量,分别使用@@和@前缀。 全局变量 常用的全局变量有@@VERSION 、@@IDENTITY、@@ERROR、@@ROWCOUNT 用法 select @@VERSION --显示sql server的版本信息 select * from Employee i ...
分类:数据库   时间:2016-06-07 14:34:30    阅读次数:359
Hibernate中的一对多与多对一映射
1.需求 一个部门有多个员工; 【一对多】 多个员工,属于一个部门 【多对一】 2.实体Bean设计 Dept: Employee: 3.配置映射文件 Dept.hbm.xml Employee.hbm.xml 4.保存数据 使用“一”的一方来设置关联 此时会执行5条sql语句,其中最后两条upda ...
分类:Web程序   时间:2016-06-06 20:29:40    阅读次数:238
第六章 查询数据
基本查询语句 select的基本语法: select 属性列表 from 表名和视图列表 [where 条件表达式1] [group by 属性名1 [having 条件表达式2]] [order by 属性2 [asc|desc]]   单表查询 如下表:         查询所有字段 mysql> select * from employee;...
分类:其他好文   时间:2016-06-04 10:43:57    阅读次数:226
周记 2016.5.31
1. 插入对象后获取主键 <insert id="add" useGeneratedKeys="true" keyProperty="vo.id"> 如果传的是(@Param("vo") Employee vo) 形式的参数,需要使用vo.id。如果直接使用(Employee vo),则使用keyP ...
分类:其他好文   时间:2016-05-31 20:53:39    阅读次数:172
《PHP与MySQL程序设计》第六章
用_ _set()方法设置属性 自己写了个容易理解的 __set()方法是默认的,我测试了一下,我不写__set()方法,也可以实现 $employee->sex = 'M'; echo $employee->sex; __set()的方法可以限制一些属性的设置,比如: 用 _ _get()方法获取 ...
分类:数据库   时间:2016-05-27 00:44:52    阅读次数:188
JAVA学习(2)&&一些感想
主要学习了JAVA语言中父类,子类,抽象(abstract)的概念,书上讲了通过抽象一个Person类,然后派生出Employee和Student类,同时对抽象函数进行了重新定义,使得派生出的类不是抽象类。 最近两天因为刷了几道算法题,没有学太多JAVA的知识,发现关于《Core Java》这本书看 ...
分类:编程语言   时间:2016-05-25 00:15:41    阅读次数:173
学习SpringMVC(十七)之自定义类型转换器
本节的主要内容就是将表单提交的字符串转化为对象 在index.jsp中: SpringMVC 自定义转换器 Employee: 在Controller中: package com.cgf.springmvc.handlers; import java.util.Map; import org.springframework.beans.factory.annotation...
分类:编程语言   时间:2016-05-24 12:12:49    阅读次数:173
实现一个名为Person的类和它的子类Employee,Employee有两个子类Faculty 和Staff。 具体要求如下: (1)Person类:姓名,地址,电话号码和电子邮件地址; (2)Employee类:办公室,工资 受雇日期(3)Faculty类:学位 级别(4)Staff类:职务
package b; public class Person { private String name; private String address; private String telephone; private String email; public String getName() ...
分类:其他好文   时间:2016-05-23 13:18:57    阅读次数:323
【Leetcode】Employees Earning More Than Their Managers
题目链接:https://leetcode.com/problems/employees-earning-more-than-their-managers/题目: The Employee table holds all employees including their managers. Every employee has an Id, and there is also a column...
分类:其他好文   时间:2016-05-18 19:13:02    阅读次数:163
【Leetcode】 Second Highest Salary
题目链接:https://leetcode.com/problems/second-highest-salary/题目: Write a SQL query to get the second highest salary from the Employee table.+—-+——–+ | Id | Salary | +—-+——–+ | 1 | 100 | | 2 | 200...
分类:其他好文   时间:2016-05-18 18:56:28    阅读次数:137
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!