select t.*,t1.person_names from itil_duty_group t ,( select p.duty_group_id, WMSYS.WM_CONCAT(p.person_name) person_names From itil_duty_group_person p...
分类:
数据库 时间:
2014-07-07 12:42:21
阅读次数:
185
我的背景图片是png格式的,在IE中不显示但是在火狐和chrom中显示正常,以下是代码:body{ background: url(image/bj.jpg) no-repeat scroll 0px 0px;}更改图片类型为jpg格式就可以了
分类:
其他好文 时间:
2014-07-07 12:22:14
阅读次数:
194
1 instr(objClob,objstr,beginIndex,appearIndex)objClob:带检索目对象,可以是clob,stringobjstr: 需要验证的字符串beginIndex: 开始检索位置,默认从1开始appearIndex: 出现的位置,默认为1select inst...
分类:
数据库 时间:
2014-07-07 09:10:02
阅读次数:
313
I think Agile development methodologies is something we get from our practice. It can be just acknowledged by taking the training, but if you want to ...
分类:
其他好文 时间:
2014-07-06 23:30:02
阅读次数:
274
描述:A表有 id,or_id 字段,B表有 id,code 字段A表有 or_id 与B表的 id 关联,现要将A.or_id 替换成 B.code 数据UPDATE ASETA.OR_ID=(SELECT codeFROM BWHEREB.ID=A.OR_ID)
分类:
数据库 时间:
2014-07-05 18:10:24
阅读次数:
220
Linq语法小结:有两种形式的语法可供我们在写Linq查询时使用,分别是“查询语法”、“方法语法”。1)先看个列子,有个直观认识 int[] arr = { 12, 2,45,34,23,18,4}; //查询语法形式(推荐使用这种)、返回的是一个可枚举类型 IEnumerable resul...
分类:
其他好文 时间:
2014-07-03 20:58:49
阅读次数:
223
上周花了点时间把CI环境再次给搞起来了,但是觉得在实体机中总觉得不是很安心,安全性不足,另外没有做备份,安全性、扩展性等都不足,且不好迁移。因为目前只给了我一台PC及,配置其实也不怎么样。但是却需要承载不少的CI任务。包括后端云的代码及分析,其中包含不下10个子系统;设备端包含了ROM,相关Laun...
分类:
其他好文 时间:
2014-07-02 23:15:26
阅读次数:
283
1) Append a slice b to an existing slice a: a = append(a, b...)2) Copy a slice a to a new slice b: b = make([]T, len(a))copy(b, a)3) Delete item at in...
分类:
移动开发 时间:
2014-07-02 18:52:39
阅读次数:
182
There is something wrong in PhyreEngine 3.8 to fullfill MSAA, actually, I think it is eqaaYou have to merge the codes from PhyreEngine 3.9. Thank God ...
分类:
其他好文 时间:
2014-07-01 16:29:11
阅读次数:
268
Since I use Sublime ,I want to write aencoding convent program .Here isthe knowage what i need .InputStreamReader:This class is the brage from bytetyp...
分类:
其他好文 时间:
2014-07-01 13:57:23
阅读次数:
214