sql
laokaizzz
这个作者很懒,什么都没留下…
展开
-
sql 语句中 可为null列的判断要小心
例如某条记录 的testcol可为null, 记录有些存1,有些为原创 2014-08-27 10:24:51 · 1793 阅读 · 0 评论 -
sql 秒 转 时分秒 函数
数学差 真丢人写个函数搞半天,还得用笔画原创 2014-11-24 16:44:32 · 3309 阅读 · 0 评论 -
SQL字符串分组聚合(分组后的数据查询后用逗号隔开)
SQL字符串分组聚合(分组后的数据查询后用逗号隔开)SQL2005中的方法create table tb(id int, value varchar(10))insert into tb values(1, 'aa')insert into tb values(1, 'bb')insert into tb values(2, 'aaa')insert i转载 2014-11-24 09:37:24 · 2356 阅读 · 0 评论 -
分组后 逗号 拼接 for xml path
select xxx_Guid,STUFF((select ','+guigexinghao_name from xxxx where t.xxx_Guid=xxx_Guid for xml path('')),1,1,'') from xxxx t group by xxx_Guid转载 2015-02-06 15:39:13 · 1056 阅读 · 0 评论 -
记录 在表中 第几次出现
select t.*, (select count(*) from aaa where id<=t.id and diqu=t.diqu) as c from aaa t原创 2015-07-29 10:43:26 · 1045 阅读 · 0 评论 -
mysql 备份相关
转自http://blog.csdn.net/java2000_wl/article/details/8014414转载 2016-08-26 10:33:00 · 347 阅读 · 0 评论 -
数据库连接池相关配置。 c3p0,tomcat jdbc,druid
c3p0destroy-method="close"> pom.xmldependency> groupId>c3p0groupId> artifactId>c3p0artifactId> version>0.9.1.2version>dependency>tomcat jdbcbe转载 2017-12-18 17:30:41 · 609 阅读 · 0 评论 -
oracle 查看某个用户下每个表所占用的表空间
执行如下语句即可: select OWNER, t.segment_name, t.segment_type, sum(t.bytes / 1024 / 1024) mmm from dba_segments t where t.owner = '你要查询的用户' and t.segment_type='TABLE' group by OWNER, t.segment_name, t.segme...转载 2018-02-23 14:08:47 · 15490 阅读 · 1 评论