当前位置:首页 » 编程博文
开发技术指南» 文章正文
    引言: 利用存储过程来消除数据库中冗余的数据CREATE PROCEDU
 

 

 ·overflow flag & carry flag    »显示摘要«
    摘要:two of the bits in the flags register that add and sub instructions set are overflow and carry flag: overflow flag: set for signed arithmetic when the ture result is too big to fit into the destinati......
 ·comparisions    »显示摘要«
    摘要:instruction: cmp comparing by subtraction for unsigned numbers: 2 bits in the flags register zf cf = 1 0 > 0 0 < 0 1 for signed numbers: 3 bits in the flags register zf of sf = 1 0 0 ......


利用存储过程
利用存储过程来消除数据库中冗余的数据

create procedure sp_mytest as 【程序编程相关:[系列第2篇]《共享软件走向国际指南》

【推荐阅读:程序员,你的路好走吗?(五)

declare @pro varchar(50) 【扩展信息:JAVA代码编写的30条建议

declare @mm int

declare wu cursor for select distinct product from mytest

open wu

fetch next from wu into @pro

while @@fetch_status=0

begin


...   下一页
    摘要: 软件项目开发到了后期,特别是系统架构基本稳定,如果客户提出新的需求,往往会给项目带来较大的风险。在客户眼里也许只是一微不足道的小小要求却给系统带了很严重的影响(有可能是系统设计的问题,但这个时候也顾不上考虑这些了)。为了使项目按时上线,需要对客户的新增需要分析对比,提取那些必须修改无法回避的问题,下面谈谈一点小小的看法:对于系统中必须要有的功能,就算很特别,做起来费劲也得修改满足,否则客户那......
» 本期热门文章:

©2000-2007 All Rights Reserved. 最佳浏览:1024X768 MSIE