摘要: SELECT COLUMN_NAME,DATA_TYPE,COLUMN_COMMENT from information_schema.COLUMNS where TABLE_SCHEMA='cecoal_datacenter206' and TABLE_NAME='ce_data_invest_n 阅读全文
posted @ 2017-02-21 11:36 baby孔祥超 阅读(175) 评论(0) 推荐(0) 编辑
摘要: if(item == null || "".equals(item.trim())) 阅读全文
posted @ 2017-02-19 17:23 baby孔祥超 阅读(197) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { Pattern pattern =null; String content = "30.年前"; if(content.contains(".")){ pattern = Pattern.compile("^(\\d+ 阅读全文
posted @ 2017-02-19 15:47 baby孔祥超 阅读(1675) 评论(0) 推荐(0) 编辑
摘要: if(list!=null&&!list.isEmpty()){ hql.append(" and (status = ? or status=? or status=? or status=?)"); params.add(queryModel.getStatuses().get(0)); par 阅读全文
posted @ 2017-02-19 14:48 baby孔祥超 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 在jsp页面去Id时候要照上面的方式取,不能照下面的方式取: 阅读全文
posted @ 2017-02-19 14:46 baby孔祥超 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 本人刚接触ETL工具 Data Integration - Kettle ,下载了kettle6.0版本,但是在window +jdk1.7(32位)下启动报错, 使用SpoonDebug.bat写的日志信息是: DEBUG: Using JAVA_HOME DEBUG: _PENTAHO_JAVA 阅读全文
posted @ 2017-02-18 17:23 baby孔祥超 阅读(6331) 评论(0) 推荐(0) 编辑
摘要: SQL查询前10条记录(SqlServer/mysql/oracle)语法分析 Sql Server : www.2cto.com Sql代码 select top X * from table_name --查询前X条记录,可以改成需要的数字。 select top n * from (selec 阅读全文
posted @ 2017-02-14 17:53 baby孔祥超 阅读(400) 评论(0) 推荐(0) 编辑
摘要: name的数据类型是nvarchar吗?如果是改为varchar类型应该能运行,但是这个治标不治本,这是hibernate没映射nvarchar 刚才整理了一下varchar和nvarchar的区别,然后用Hibernate映射到数据库时,发现String类型被映射为了varchar,就在网上找了一 阅读全文
posted @ 2017-02-14 12:22 baby孔祥超 阅读(10370) 评论(0) 推荐(0) 编辑
摘要: import jxl.write.WritableCellFormat; import jxl.write.WritableWorkbook; import jxl.write.WritableSheet; @Override public void exportExcel(CourseTypeMo 阅读全文
posted @ 2017-02-14 09:29 baby孔祥超 阅读(143) 评论(0) 推荐(0) 编辑
摘要: select d.content,count(s.status) from MesmachineStatus s , Mesmachinestatusdetail d where s.status=d.status group by s.status 正确地 SELECT d.content,cou 阅读全文
posted @ 2017-02-13 15:01 baby孔祥超 阅读(2347) 评论(0) 推荐(1) 编辑