1)
select d.code,d.names, n.sname from
(select t.code_syndrome code,t.name_syndrome names from csmw_management_syndrome t) d,
(SELECT '01' CODE,'发病数' sNAME FROM dual UNION ALL SELECT '02' CODE,'占缺课总人数百分比'names FROM dual) n
order by code,n.code
ps: d和n分别表示一个表,两个表做笛卡尔积。
2)select distinct(s.date_report) A,s.ILL_STUDENT_NUM B,s.zonecode C from csmw_statistics_s_syndrome s
结果为:
A B C
1 2011-06-28 16 31011500
2 2011-06-28 70 31011500
3 2011-06-29 30 31011500
4 2011-06-29 60 31011500
如果为select distinct(s.date_report) A,s.zonecode C from csmw_statistics_s_syndrome s
结果为:
A C
1 2011-06-28 31011500
2 2011-06-29 31011500
如果 select distinct(s.date_report A,s.ILL_STUDENT_NUM B,s.zonecode C) from csmw_statistics_s_syndrome s 会报错,distinct只能用于一个字段或所有字段。
3)一个表为:
date_report code ill_count
1 2011-06-28 01 16
2 2011-06-28 02 16
3 2011-06-28 01 70
4 2011-06-28 02 70
5 2011-06-29 01 30
6 2011-06-29 02 30
7 2011-06-29 01 60
8 2011-06-29 02 60
ill_count是每一个日期的生病总人数,那么不同的code的ill_count也是相同的。因此想求每天的ill_count总数,
那么不能写:select date_report,sum(ill_count) from A group by date_report ,这样的ill_count就会算重了,
因此应该写:select date_report,sum(ill_count) from ( select distinct(date_report),ill_count from A) group by date_report
4)orcale中没有split函数,需要自己写函数实现,一般写的函数都会返回一个table类型的值回来,所以取的话也要
这样写:
select * from table( split('a,b',',') )
另外replace函数返回的是一个字符串,所以如果想用 a in (replace('01||02','||',',')的话实际上in里面是一个值,而不是想像中的 a in (01,02),所以想实现这样的功能的话应该再加上split函数,结合起来,如下:
a in (select * from table(split(REPLACE('01||02','||',','),',')))
5)按一个列分组,然后取每个分组的记录数,如select age,count(*) from users group by age
结果为 a 6 ,b 3 ,c 9 这样,但是如果在根据插入时间来筛选的话,就可能会出现a 5,b 2。c就没有了,现在想要出现
a 5,b 2,c 0,就要写成:
select '0' ,age from sari_j_caseinfo where inserttime>2011-01-01 union all
select to_char(count(*)),age from users where inserttime>2011-01-01 group by age
6) 有表 lws_q_bl_result ,字段为
groupresult_id, sample_id, detect_orgcode, monitorsort, hi_detect, hi_date, hi_status, srh_detect, srh_date, srh_status, note, detectmethod, del, state, orgcode, greate, greatedate, changer, changedate, id, send_org, receive_org, auditor, detector, hi_type
需求:lws_q_bl_result 表中的 sample_id 应是唯一的,所以每个相同sample_id只保留一条,由于基本上重复的数据均是除了id,greatedate都相同,所以只要把除了id,greatedate两列以外其余列都相同的数据保留第一条,其余的数据的del 字段设为1就可以了。
第一步:取得除了id,greatedate两列以外其余列都相同的数据
select id from lws_q_bl_result t where (nvl(groupresult_id, '#'), nvl(sample_id, '#'), nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#')) in (select nvl(groupresult_id, '#'), nvl(sample_id, '#'), -- 当值是空时用#号代替 nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#') from lws_q_bl_result where del = 0 group by nvl(groupresult_id, '#'), nvl(sample_id, '#'), nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#') having count(*) > 1)
第二步,找出每组重复数据中的除第一行以外的数据。
select id from (select id,rownum as row_num from lws_q_bl_result r where r.sample_id = 'B10226072') where row_num>1
上面这行语句可以找出sample_id='B10226072' 时除第一行以外的数据,但是它无法做到先分组后再取得每组的除第一条以外的数据。故只能先把每组的第一条先插入到一个表里,再做处理。
insert into lws_q_bl_result_new( groupresult_id, sample_id, detect_orgcode, monitorsort, hi_detect, hi_date, hi_status, srh_detect, srh_date, srh_status, note, detectmethod, del, state, orgcode, greate, changer, changedate, send_org, receive_org, auditor, detector, hi_type ) select nvl(groupresult_id, '#'), nvl(sample_id, '#'), nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#') from lws_q_bl_result where del = 0 group by nvl(groupresult_id, '#'), nvl(sample_id, '#'), nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#') having count(*) > 1
3)给 lws_q_bl_result_new 表的 id,greatedate 两列赋值,id取每组第一条记录。
update lws_q_bl_result_new t set (t.id,t.greatedate) = (select s.id,s.greatedate from lws_q_bl_result s where nvl(s.groupresult_id, '#') = t.groupresult_id and nvl(s.sample_id, '#') = t.sample_id and nvl(s.detect_orgcode, '#') =t.detect_orgcode and nvl(s.monitorsort, '#')=t.monitorsort and nvl(s.hi_detect, '#')=t.hi_detect and nvl(s.hi_date, to_date('1950-01-01', 'yyyy-mm-dd'))=t.hi_date and nvl(s.hi_status, '#')=t.hi_status and nvl(s.srh_detect, '#')=t.srh_detect and nvl(s.srh_date, to_date('1950-01-01', 'yyyy-mm-dd'))=t.srh_date and nvl(s.srh_status, '#')=t.srh_status and nvl(s.note, '#')=t.note and nvl(s.detectmethod, '#')=t.detectmethod and nvl(s.del, '#')=t.del and nvl(s.state, '#')=t.state and nvl(s.orgcode, '#')=t.orgcode and nvl(s.greate, '#')=t.greate and nvl(s.changer, '#')=t.changer and nvl(s.changedate, to_date('1950-01-01', 'yyyy-mm-dd'))=t.changedate and nvl(s.send_org, '#')=t.send_org and nvl(s.receive_org, '#')=t.receive_org and nvl(s.auditor, '#')=t.auditor and nvl(s.detector, '#')=t.detector and nvl(s.hi_type, '#')=t.hi_type and rownum=1 )
4)把符合条件的数据DEL值设为1
update lws_q_bl_result set del = 1 where id in (select id from lws_q_bl_result t where (nvl(groupresult_id, '#'), nvl(sample_id, '#'), nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#')) in (select nvl(groupresult_id, '#'), nvl(sample_id, '#'), nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#') from lws_q_bl_result where del = 0 group by nvl(groupresult_id, '#'), nvl(sample_id, '#'), nvl(detect_orgcode, '#'), nvl(monitorsort, '#'), nvl(hi_detect, '#'), nvl(hi_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(hi_status, '#'), nvl(srh_detect, '#'), nvl(srh_date, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(srh_status, '#'), nvl(note, '#'), nvl(detectmethod, '#'), nvl(del, '#'), nvl(state, '#'), nvl(orgcode, '#'), nvl(greate, '#'), nvl(changer, '#'), nvl(changedate, to_date('1950-01-01', 'yyyy-mm-dd')), nvl(send_org, '#'), nvl(receive_org, '#'), nvl(auditor, '#'), nvl(detector, '#'), nvl(hi_type, '#') having count(*) > 1) and del = 0 and id not in (select id from lws_q_bl_result_new))
7)
有表csmw_collection_hospital,如下
ID_SYMPTOM_HOSPITAL | SYMPTOM |
ECB513EF-5DCC-441C-A6B4-65AC96FBCF8C | 8 |
C83AB542-6926-42E9-B4A6-9F3C8693331F | 8 |
73D14E69-0D77-42C7-80BF-4B4D56F780BC | 8 |
E5515D94-9F81-48CF-B0AE-5B442C93CEF4 | 8 |
356AEE63-8D5F-4095-A3BA-15B31ECEAB4F | 8 |
440AED70-46FF-4BD0-BCFB-329FBBBC4955 | 07||08 |
1D7B67D8-AF2C-4844-9036-9A07B6E41169 | 8 |
AD4B54B4-1297-4B95-BF0B-8D1E8671E46B | 8 |
00471FFD-F044-4B69-8F2E-CCF0B5B4230F | 01||02||08 |
现在要把该表插到另一个表A中, 字段为ID,ID_PARENT(为原表的ID_SYMPTOM_HOSPITAL),SYMPTOM ,其中要把SYMPTOM这样有||线的值拆成几条记录(根据||线的数量)
编写函数如下:
create or replace function TEST1 return varchar2 is Result varchar2(20); a varchar2(20); begin for z in (select * from csmw_collection_hospital where rownum<100) //取前100条记录 loop if(instr(z.symptom,'||',1,1)>0) -- instr函数方法为(字段值,查找的字符串,开始位置(从1开始),取第几次出现的) then -- =0 表示没查到 for y in (select column_value as dd from table(select split(z.symptom,'||') symptom from dual)) loop -- 不能是select * from table(select split(z.symptom,'||') symptom from dual)) ,因为下面的 -- insert语句要用到"y.",如果没有别名的话就无法写,因此需要给table表的colmun_value取个别名 insert into A(id,id_parent,symptom) values(sys_guid(),z.id_symptom_hospital,y.dd); end loop; end if; end loop; commit; return(Result); end TEST1;
8)假如有列的值为9901||9902||9903 ,如果想查询条件为既是9901又是9903的,那么SQL为如下:
select * from test where rowname||'||' like '%9901||%9903||%' (查询时要在列名前加上||)
如果是mysql的话,则不能使用 || 这个符号,mysql的拼接用的是concat(rowname,"||")
PS: 这里9901||9902中间的是分隔符,可以随便换成任何特殊符号如逗号分号
相关推荐
在这个简单的LINQ to SQL例子中,我们将探讨如何使用C#来实现数据库的基本操作。 首先,我们需要包含必要的命名空间,如`System.Linq`和`System.Data.Linq`,它们提供了 LINQ to SQL 所需的类和方法。接下来,我们...
"经典SQL例子-scott"这个资源是学习SQL的一个宝贵资料,它包含了Oracle数据库中的经典实例。Oracle是全球广泛使用的数据库管理系统之一,其内置的"SCOTT"用户示例数据库提供了丰富的练习场景。 SCOTT是Oracle中的一...
sql 例子数据库语句教程适合新手
oracle动态sql例子,适用于存储过程中拼接sql
在这个"一个Delphi SQL例子 交易程序"中,我们可以期待看到以下几个关键知识点: 1. **数据库连接**:程序可能使用TADOConnection组件建立与数据库的连接,通过设置ConnectionString属性配置数据库服务器、数据库名...
游标 ms sql 例子----- 大概模式 临时表使用等-——---
WebSQL是一种在浏览器环境中存储和查询结构化数据的API,主要应用于离线Web应用程序。它提供了类似于关系数据库管理系统(RDBMS)的功能,允许开发者在客户端进行数据的增删改查操作,无需服务器端交互。虽然现在Web...
标题“wpf链接sql server简单的例子”指的是使用Windows Presentation Foundation(WPF)技术连接到Microsoft SQL Server 2005数据库,展示一个基础的交互过程,目的是帮助初学者理解如何实现这样的连接。...
ASP(Active Server Pages)是...这个例子将向你展示基本的流程,你可以根据实际需求进行扩展,如使用参数化查询以防止SQL注入,或者优化性能等。在实际项目中,还可能需要考虑事务管理、数据库连接池等更高级的话题。
本教程将通过一个具体的例子,解释如何使用JDBC连接SQL Server 2000数据库。 首先,确保你已安装了SQL Server 2000并创建了一个数据库。同时,你也需要JDBC驱动,对于SQL Server,通常是Microsoft的JDBC Driver,也...
折半查找漏数据的例子,仅供学习参考 create procedure fTheLossNo @cardno as begin declare @maxBalance float,@minBalance float,@middleBalance float,@tempMaxBalance float,@tempMinBalance float set @...
在计算机等级考试二级VF教材中,SQL的例子主要集中在对数据的检索、过滤和联合操作上。以下将详细解释这些例子所涵盖的SQL知识点。 1. **选择查询(Select)**: - `SELECT 工资 FROM 职工`:这是最基础的查询,...
MVC3下做的一个表单~虽然页面很简单~但是实现连接MySql,sqlce,sql三个数据库(只要你运行环境装好了,网上有很多安装教程绝对能运行)基本上只用过修改一下web.config和Global.asax的注释就行,三个数据库的配置我...
java 执行sql脚本 例子java 执行sql脚本 例子java 执行sql脚本 例子java 执行sql脚本 例子java 执行sql脚本 例子java 执行sql脚本 例子java 执行sql脚本 例子java 执行sql脚本 例子java 执行sql脚本 例子java 执行...
总结来说,这个多层结构的LINQ to SQL例子展示了如何在.NET应用程序中分离关注点,保持代码的整洁性和可维护性。通过在不同的项目层中定义职责,我们可以更好地管理复杂性,提高代码的重用,并降低出错的可能性。...
初学者学习SQL2008最害怕什么?不怕有没有教程pdf,不怕没有教学视频,不怕没有论坛和Q群,害怕的是没有真正的实例,因为自学者什么都是从头开始,这是一个完整工资管理系统数据库实例,打开microsoft sql server ...
在SQL语言中,这些例子展示了如何对数据库进行各种操作,包括表操作、视图操作、索引操作以及数据库模式操作。 1. **表操作**: - `CREATE TABLE`语句用于创建表,如示例1和2创建了STUDENTS和ENROLLS表,定义了各...
在这个“sql基本语法例子 数据库”主题中,我们将深入探讨SQL的基础概念和核心语法,这对于SQL初学者来说是至关重要的。 首先,我们要理解SQL的主要功能。SQL可以用来创建数据库、定义数据结构、插入数据、查询数据...
【PL/SQL例子详解】 PL/SQL,全称Procedural Language/Structured Query Language,是Oracle数据库中的一个扩展,结合了SQL的查询能力与过程化编程语言的特点,为数据库管理和开发提供了强大的工具。本资源“PL/SQL...
《VB6与SQL Server 2000完整集成实践》 VB6(Visual Basic 6.0)是微软公司推出的经典编程环境,主要用于开发Windows桌面应用程序。它以其易学易用、强大的窗体设计和数据库访问能力而广受欢迎。而SQL Server 2000...