第6.1章 存储过程及触发器补充.pptVIP

  • 0
  • 0
  • 约6.3千字
  • 约 35页
  • 2017-06-17 发布于湖北
  • 举报
Review 以课程注册为例如何做? 每个程序员都经历过下面这些阶段,只不过先后顺序不一样了! 存储过程 (1)解决代码重复使用问题。 (2)存储过程是Transact-SQL语句, 存储在数据库服务器上  Transact-SQL编程语言是应用程序与SQL数据库之间的编程接口。 (3)存储过程是SQL语句和控制流语句的预编辑集合 * if object_id(dbo.helloworld) is not null drop proc dbo.helloworld go create procedure helloworld as print hello, world select * from sysobjects where name = helloworld select * from syscomments where text like %helloworld% * * if object_id(dbo.helloworld) is not null drop proc dbo.helloworld go create procedure helloworld as print hello, world select * from sysobjects where name = helloworld select * from sysc

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档