查询文件中某几行: 【一】从第3000行开始,显示1000行。即显示3000~3999行 cat filename | tail -n +3000 | head -n 1000 【二】显示1000行到3000行 cat filename| head -n 3000 | tail -n +1000 * ...
分类:
系统相关 时间:
2017-01-10 19:37:24
阅读次数:
193
input_stu_path.jsp: showinput_stu_path.jsp: ...
分类:
编程语言 时间:
2017-01-10 19:35:26
阅读次数:
163
1.检查一下系统中的jdk版本 1.检查一下系统中的jdk版本 java -version java version "1.7.0_"OpenJDK Runtime Environment (IcedTea6 1.11.1) (rhel-1.45.1.11.1.el6-x86_64)OpenJDK ...
分类:
其他好文 时间:
2017-01-10 19:30:22
阅读次数:
188
$(".logo").click(function () { $(this) .animate({ left: -200 }) .animate({ left: 200 }) .animate({ left: -200 }) .animate({ left: 200 }) .animate({ le... ...
分类:
Web程序 时间:
2017-01-10 19:07:18
阅读次数:
176
2016-11-22 子查询:标量子查询 内联视图(in-line view) 半连接/反连接 标量子查询 select 后跟子查询 类似自定义函数 可用开窗函数之类的改写 内联视图(in-line view) from 后跟子查询 类似设计View 子查询套子查询是垃圾设计会带来性能问题 半连接就 ...
分类:
数据库 时间:
2017-01-10 17:55:27
阅读次数:
217
Hibernate中Java对象的三种状态 在hibernate中,对象有三种状态:临 时状态(Transient)、持久状态(Persistent)和游离状态(Detached)。 处于持久态的对象也称为 PO(PersistenceObject),临时对象和游离对象也称为VO(ValueObje ...
分类:
Web程序 时间:
2017-01-10 17:44:47
阅读次数:
148
kvm 启动libvirtd市出现错误: /etc/init.d/libvirtd start启动 libvirtd 守护进程:libvirtd: relocation error: libvirtd: symbol dm_task_get_info_with_deferred_remove, ve ...
分类:
其他好文 时间:
2017-01-10 17:30:47
阅读次数:
146
select object_name,machine,s.sid,s.serial# from v$locked_object l,dba_objects o ,v$session s where l.object_id = o.object_id and l.session_id=s.sid; a ...
分类:
数据库 时间:
2017-01-10 17:29:38
阅读次数:
167
1 border-radius 私有前缀 浏览器个把年前就把私有前缀给去掉了,现在完全没必要还傻傻使用-webkit-border-radius, -moz-border-radius 2 border-radius百分比值 是相对于元素占据尺寸的百分比(类似jQuery outerWidth()/ ...
分类:
其他好文 时间:
2017-01-10 17:28:20
阅读次数:
114
Course表如下: 查询出每门课都大于80 分的学生姓名有两种方法。 1.select distinct name from Course where name not in (select distinct name from Course where score<=80) 2.select n ...
分类:
数据库 时间:
2017-01-10 17:22:48
阅读次数:
225