T-SQL中变量分为全局变量和局部变量,分别使用@@和@前缀。 全局变量 常用的全局变量有@@VERSION 、@@IDENTITY、@@ERROR、@@ROWCOUNT 用法 select @@VERSION --显示sql server的版本信息 select * from Employee i ...
分类:
数据库 时间:
2016-06-07 14:34:30
阅读次数:
359
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
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
用_ _set()方法设置属性 自己写了个容易理解的 __set()方法是默认的,我测试了一下,我不写__set()方法,也可以实现 $employee->sex = 'M'; echo $employee->sex; __set()的方法可以限制一些属性的设置,比如: 用 _ _get()方法获取 ...
分类:
数据库 时间:
2016-05-27 00:44:52
阅读次数:
188
主要学习了JAVA语言中父类,子类,抽象(abstract)的概念,书上讲了通过抽象一个Person类,然后派生出Employee和Student类,同时对抽象函数进行了重新定义,使得派生出的类不是抽象类。 最近两天因为刷了几道算法题,没有学太多JAVA的知识,发现关于《Core Java》这本书看 ...
分类:
编程语言 时间:
2016-05-25 00:15:41
阅读次数:
173
本节的主要内容就是将表单提交的字符串转化为对象
在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
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
题目链接: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
题目链接: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