1、在VS中新建jq项目: 新建web窗体时选择第二个: 将系统生成的多余文件夹删掉,仅留下Scripts和Web.config: 将Scripts文件夹改名为我们熟悉的js(也可以不改,仅推荐改),并新建文件夹css和image,并在对应位置添加页面,html、css、js 将上图...
分类:
其他好文 时间:
2015-08-02 11:41:20
阅读次数:
200
#story-interview .page4 .active-rule li:nth-child(1)
分类:
移动开发 时间:
2015-07-31 17:58:30
阅读次数:
173
数据库名称 : PROD1update employees set salary = salary + 1000 where LAST_NAME = ‘Bell’;select LAST_NAME, salary from employees where LAST_NAME=‘Bell’; (结果为...
分类:
其他好文 时间:
2015-07-31 12:18:01
阅读次数:
77
pay slip 可以录入多条 worked_days_line 和 input_line,用来人工调整薪资变动部分,比如销售提成,扣款等。 pay slip 可以包含多个pay slip line 用来存储 Hr.salary.rule 计算出的结果。 Hr.salary.rule 定义了薪资规则...
分类:
其他好文 时间:
2015-07-30 21:08:29
阅读次数:
168
Coded triangle numbers
Problem 42
The nth term of the sequence of triangle numbers is given by, tn = ½n(n+1); so the first ten triangle numbers are:1, 3, 6, 10, 15, 21, 28, 36, 45, 55, …By converting...
分类:
其他好文 时间:
2015-07-30 17:00:20
阅读次数:
117
SELECT a.name, a.salary ,a.dept_id FROM emp a WHERE salary<(SELECT AVG(salary) FROM emp WHERE a.dept_id=dept_id GROUP BY dept_id); SELECT a.name,a.sa....
分类:
数据库 时间:
2015-07-30 13:00:50
阅读次数:
139
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2015-07-29 21:02:12
阅读次数:
84
0x01 TLS使用中的降级To work with legacy servers, many TLS clients implement a downgrade dance: in a first handshake attempt, offer the highest protocol vers...
分类:
其他好文 时间:
2015-07-28 17:36:11
阅读次数:
196
题目:找出高于所在部门平均工资的员工的姓名,工资,所在部门的编号,部门的平均工资1、首先找出每个部门的平均工资SELECT AVG(salary) pjgz,did FROM man WHERE GROUP BY did2、将其作为临时表,放到主查询中SELECT man.name ,man.salary ,lsb.did ,lsb.pjgz FROM man ,(SELECT AVG(salar...
分类:
数据库 时间:
2015-07-24 12:54:59
阅读次数:
164
怎么获取所有分组中某列最大的行?下面用一个例子来说明下:
一共公司有若干员工,每个员工有各自的id, group_id(部门), salary(工资).现在的问题转变为
求公司各部门最高工资的员工
首先明确一个问题,一个部门的若干个员工可能同时拥有最高的工资,需要都列举出来。
看一下员工的数据库表结构(只包含有用的列):
Field
Type
...
分类:
其他好文 时间:
2015-07-23 23:48:44
阅读次数:
191