码迷,mamicode.com
首页 >  
搜索关键字:employee    ( 1484个结果
集合操作
select employee_id, job_id from employees union all select employee_id, job_id from job_history; select employee_id, job_id from employees union selec ...
分类:其他好文   时间:2017-08-06 17:02:56    阅读次数:111
oracle课堂随笔--第十六天
实例管理 监听 启动监听: $ netstat -tlnp | grep 1521 $ lsnrctl LSNRCTL> help $ lsnrctl status $ lsnrctl stop $ netstat -tln | grep 1521 快速动态注册:(可选) $ sqlplus / a ...
分类:数据库   时间:2017-08-06 15:56:44    阅读次数:351
单行函数
SQL> select upper(first_name), lower(last_name), length(last_name) from employees; SQL> select (sysdate-hire_date)/7 from employees; SQL> select trunc ...
分类:其他好文   时间:2017-08-06 15:54:50    阅读次数:107
Mybatis逆向工程——(一)
逆向工程可以快速将数据库的表生成JavaBean,同时生成对单标操作的Mapper.java与Mapper.xml,极大地提高了开发速度。 1.jar包 2.配置文件 需要修改数据库连接信息,mapper生成目录与pojo生成位置,也要修改要导出的表。 工程目录下配置generatorConfig. ...
分类:其他好文   时间:2017-08-06 12:48:25    阅读次数:243
MySQL安装示例employee数据库
服务器操作系统:CentOSrelease6.8(Final)数据库系统:MySQL5.5.52任务:安装employee示例数据库操作步骤:[root@sky9896~]#wgethttps://launchpadlibrarian.net/24493586/employees_db-full-1.0.6.tar.bz2[root@sky9896~]#tarjxfemployees_db-full-1.0.6.tar.bz2[root@sky9896~..
分类:数据库   时间:2017-08-06 10:46:57    阅读次数:429
【Other】关于There is a cycle in the hierarchy!
原因: 父对象与子对象互相包含对方的类型的属性,造成死循环 解决方案1: JsonConfig config=new JsonConfig(); config.setExcludes(new String[]{"devTask","employee","probClient"}); //传入要忽略的 ...
分类:其他好文   时间:2017-08-05 22:04:03    阅读次数:132
Codeforces Beta Round #87 (Div. 1 Only)A. Party(深搜)
传送门 Description A company has n employees numbered from 1 to n. Each employee either has no immediate manager or exactly one immediate manager, who is ...
分类:其他好文   时间:2017-08-05 18:48:04    阅读次数:325
DDL与DML语句
1. DDL语句 SQL语句:结构化查询语句,使用SQL与数据库“沟通”,完成相应的数据库操作。 l DDL:数据定义语言,用来维护数据库对象 1.1 创建表 Ø CREATE:创建表 演示:创建员工表 CREATE TABLE employee( id NUMBER(4), name VARCHA ...
分类:其他好文   时间:2017-08-05 13:16:29    阅读次数:281
导入MySQL测试数据库employee报错
导入MySQL测试数据库employee报错 下载地址:https://launchpad.net/test-db/ 上传解压: [root@001 ~]# tar xf employees_db-full-1.0.6.tar.bz2 [root@001 ~]# cd employees_db 使用... ...
分类:数据库   时间:2017-08-04 21:33:57    阅读次数:255
三表连接之内连接
表之间的关系为: manager 1 >n department 1 >n employee mysql> select * from manager; 2 rows in set (0.00 sec) mysql> select * from department; 3 rows in set ( ...
分类:其他好文   时间:2017-08-04 19:30:39    阅读次数:219
1484条   上一页 1 ... 75 76 77 78 79 ... 149 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!