码迷,mamicode.com
首页 >  
搜索关键字:employee    ( 1484个结果
CodeForces - 631C ——(思维题)
Each month Blake gets the report containing main economic indicators of the company "Blake Technologies". There are n commodities produced by the comp ...
分类:其他好文   时间:2018-07-19 13:47:06    阅读次数:171
MySQL之多表查询
一,多表连接查询 ex:创建2张表 部门表(department)、员工表(employee) create table department( id int, name varchar(20) ); create table employee( id int primary key auto_in ...
分类:数据库   时间:2018-07-18 23:26:08    阅读次数:233
多表查询
一 介绍 本节主题 多表连接查询 复合条件连接查询 子查询 准备表 #建表 create table department( id int, name varchar(20) ); create table employee( id int primary key auto_increment, n ...
分类:其他好文   时间:2018-07-17 21:42:45    阅读次数:160
Monit
Monit:开源服务器监控工具 Monit是一个跨平台的用来监控Unix/linux系统(比如Linux、BSD、OSX、Solaris)的工具。Monit特别易于安装,而且非常轻量级(只有500KB大小),并且不依赖任何第三方程序、插件或者库。 Monit可以监控服务器进程状态、HTTP/TCP状 ...
分类:其他好文   时间:2018-07-16 11:24:01    阅读次数:177
第一章:oracle_sql语句之select语句
scott用户拥有哪些表?SQL>select * from tab;查询表中所有行所有列SQL>select * from dept;SQL>select * from emp;将缓冲区的命令保存为脚本:SQL>save 1.sql查看脚本文件的内容:SQL>get 1.sql运行脚本文件:SQL>@1.sql查询表中感兴趣的列select ename,sal
分类:数据库   时间:2018-07-13 11:05:36    阅读次数:421
逆袭之旅DAY16.东软实训.Oracle.索引
2018-07-12 14:44:27 四、索引1、创建索引手动创建:create index 索引名 on 表名(列名,[列名,...])create table employee(pno number(7),pname varchar2(20)); create index inx_scott_ ...
分类:数据库   时间:2018-07-12 16:30:43    阅读次数:243
属性(property)的特性(attribute)
属性:对象中可以保存数据的变量 属性的特性: 数据属性的特性(默认值是false):value、writable(可写否) 、enumerable(可否枚举)、configurable(可否重新配置) 使用属性的特性定义一个新的访问器属性 Object.defineProperty{ stu, 't ...
分类:其他好文   时间:2018-07-11 17:59:19    阅读次数:165
HDU 3974 Assign the task(线段树)
描述There is a company that has N employees(numbered from 1 to N),every employee in the company has a immediate boss (except for the leader of whole com ...
分类:其他好文   时间:2018-07-10 00:36:55    阅读次数:292
Hibernate 示例
所需jar包(必备包位于lib目录下的required中) 目录结构 1.编写数据库 2.配置数据库文件 hibernate.cfg.xml 3.创建持久化类 Employee.java 4.映射文件 Employee.hbm.xml(将已经定义的类或类组与数据库中的表对应起来) 5.工具类 Hib ...
分类:Web程序   时间:2018-07-07 20:09:21    阅读次数:188
array-03.c
#include #include void main() { int Employee[10] = { 27000, 32000, 32500, 27500, 28500, 29000, 31000, 32500, 30000, 26000}; int Salary; int Counter = ... ...
分类:其他好文   时间:2018-07-06 01:32:32    阅读次数:134
1484条   上一页 1 ... 47 48 49 50 51 ... 149 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!