New Salary

  Today my team leader raises my salary  about ¥500, and  he
praises my previous achievements to company .Meanwhile he tells me to try to
improve  my work methods and efficiency .

  Pay raise is exciting so that  I‘ll work harder and take more
responsibility than before.As for working efficiency ,I decide to change from
follow aspects:

(1)When encounter hard problems ,I‘ll ask my colleague to
give me some idea immediately.

(2)Spare more time to read more books about C# and
asp.net to consolidate my foundation.

  That‘s all ,Good night!

时间: 2024-12-20 12:13:17

New Salary的相关文章

LeetCode:Department Highest Salary - 部门内最高工资

1.题目名称 Department Highest Salary(部门内最高工资) 2.题目地址 https://leetcode.com/problems/rising-temperature 3.题目内容 表Employee包括四列:Id.Name.Salary.DepartmentId +----+-------+--------+--------------+ | Id | Name  | Salary | DepartmentId | +----+-------+--------+--

LeetCode解题思路:627. Swap Salary

Given a table salary, such as the one below, that has m=male and f=female values. Swap all f and m values (i.e., change all f values to m and vice versa) with a single update query and no intermediate temp table. For example: | id | name | sex | sala

leetcode-184-Department Highest Salary 优化记录

题目 The Employee table holds all employees. Every employee has an Id, a salary, and there is also a column for the department Id. +----+-------+--------+--------------+ | Id | Name | Salary | DepartmentId | +----+-------+--------+--------------+ | 1 |

LeetCode - Department Highest Salary

题目大概的意思是选出每个Department里工资最高的人的信息并组成相应的表信息 有几个值得注意的地方:1)使用group by语句时,前面的select语句后面的内容只能有两种情况一种是group by后面的属性,另一种是聚集函数. 2)在选取最大Salary时必须使用e1.Salary=e2.Salary and e1.DepartmentId=e2.DepartmentId两个条件,要不然会有重复. 基于这些考虑可以使用派生表查询来找出最大Salary,然后与Department表做自然

POJ 3762 The Bonus Salary!

The Bonus Salary! Time Limit: 2000ms Memory Limit: 65536KB This problem will be judged on PKU. Original ID: 376264-bit integer IO format: %lld      Java class name: Main In order to encourage employees' productivity, ACM Company has made a new policy

[LeetCode]-DataBase-Department Highest Salary

The Employee table holds all employees. Every employee has an Id, a salary, and there is also a column for the department Id. +----+-------+--------+--------------+ | Id | Name | Salary | DepartmentId | +----+-------+--------+--------------+ | 1 | Jo

LeetCode - Second Highest Salary

Description: Write a SQL query to get the second highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+ For example, given the above Employee table, the second highe

【leetcode】Second Highest Salary

原题如下: Write a SQL query to get the second highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+ For example, given the above Employee table, the second highest sala

/*使用PHP创建一个数组,保存5個员工的信息(ename/sex/salary/birthday/pic)*/

<?php/*使用PHP创建一个数组,保存5個员工的信息(ename/sex/salary/birthday/pic)*/$empList=[    ['ename'=>'张学友','sex'=>'男','salary'=>200,'birthday'=>12354215451215,'pic'=>'img/1.jpg'],    ['ename'=>'张启山','sex'=>'男','salary'=>12000,'birthday'=>123

[LeetCode]-DataBase-Nth Highest Salary

Write a SQL query to get the nth highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+ For example, given the above Employee table, the nth highest salary where n =