上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 42 下一页

2016年4月6日

sql 行转列

摘要: create table tb(姓名 varchar(10) , 课程 varchar(10) , 分数 int) insert into tb values('张三' , '语文' , 74) insert into tb values('张三' , '数学' , 83) insert into 阅读全文

posted @ 2016-04-06 10:48 struggle_beiJing 阅读(162) 评论(0) 推荐(0) 编辑

exist的用法

摘要: http://blog.csdn.net/maladoufu/article/details/8194624 http://blog.csdn.net/xiwu1616/article/details/14160855 阅读全文

posted @ 2016-04-06 10:16 struggle_beiJing 阅读(237) 评论(0) 推荐(0) 编辑

2016年4月5日

删除表Student中多余的重复记录,重复记录更具单个字段studentid来判断

摘要: 大师傅 阅读全文

posted @ 2016-04-05 22:08 struggle_beiJing 阅读(180) 评论(0) 推荐(0) 编辑

冒泡排序

摘要: package ms; public class MaoPaoSuanFa { public static void main(String[] args) { String[] str=new String[6]; str[0]="10"; str[1]="9"; str[2]="60"; str 阅读全文

posted @ 2016-04-05 21:46 struggle_beiJing 阅读(179) 评论(0) 推荐(0) 编辑

2016年4月4日

crud的意识

摘要: CRUD说的就是增查改删C:Create 增加对应CREATE TBL ...; ADD TBL IN (...) VALUES (...)R:Retrieve查询SELECT * from TBLU:Update修改UPDATE TBL ..SET ...D:Delete删除 DELETE FRO 阅读全文

posted @ 2016-04-04 13:38 struggle_beiJing 阅读(117) 评论(0) 推荐(0) 编辑

生成报表(转)

摘要: 一、JasperReport和iReport简介: 1、JasperReport简介 JasperReport是一个强大、灵活的报表生成工具,是开放源代码组织sf.net中的一个java 报表打印工程。能够展示丰富的页面内容,并将之转换成PDF,HTML,XML,Excel(通过POI或JExcel 阅读全文

posted @ 2016-04-04 13:35 struggle_beiJing 阅读(445) 评论(0) 推荐(0) 编辑

2016年4月2日

sql问题

摘要: 表中某个指标重复,去掉重复项: select * from #temp where A0107 in (select A0107 from #temp group by A0107having COUNT(A0107)>1 ) and id not in ( select MIN(id) from 阅读全文

posted @ 2016-04-02 00:13 struggle_beiJing 阅读(243) 评论(0) 推荐(0) 编辑

2016年3月31日

锁表

摘要: 查询哪些表被锁了 select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tablename from sys.dm_tran_locks where resource_type='OBJECT' --spi 阅读全文

posted @ 2016-03-31 18:36 struggle_beiJing 阅读(120) 评论(0) 推荐(0) 编辑

2016年3月26日

SystemConfig.getPropertyValue("test");配置文件已经加了test=abc,但是取得时候空字符串

摘要: 1.定位tomcat中System.properties是否配置了,发现配置了 2.定位myeclipse中修改的tomcat是不是自己配置的tomcat。发现是 3.定位如下位置配置是否读取我先在用的tomcat下的config文件夹 阅读全文

posted @ 2016-03-26 11:59 struggle_beiJing 阅读(490) 评论(0) 推荐(0) 编辑

2016年3月25日

final关键字

摘要: http://www.cnblogs.com/dolphin0520/p/3736238.html 阅读全文

posted @ 2016-03-25 11:05 struggle_beiJing 阅读(107) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 42 下一页

导航