about me:oracle ace pro,optimistic,passionate and harmonious. focus on oracle,mysql and other database programming,peformance tuning,db design, j2ee,linux/aix,architecture tech,etc
全部博文(169)
发布时间:2024-10-29 17:28:15
overlap重叠查找算法:
一般用子查询实现,如果用join会导致结果集重复数量增多,因为不是1对1关系,而是1行对应多行。
使用子查询自关联,比如主表a,子查询的a取个别名b,对应的有start_date,end_date以及唯一标识id以及自关联的比如这里是staff_id
......【阅读全文】
发布时间:2024-10-18 10:09:58
对于表t,有object_id,按照where object_id =:oid查询,如果传入的oid是null,则查询全部( 希望走全表扫描 ),相当于from t where 1=1,如果object_id传入非null值( 希望走索引扫描 ),则执行查询from t where object_id =:oid,这是常见的根据传入的值不同,执行不同条件查询的语句。......【阅读全文】