zoukankan      html  css  js  c++  java
  • SQL _ Create Procedure

     1 -- ================================================
     2 -- Template generated from Template Explorer using:
     3 -- Create Procedure (New Menu).SQL
     4 --
     5 -- Use the Specify Values for Template Parameters 
     6 -- command (Ctrl-Shift-M) to fill in the parameter 
     7 -- values below.
     8 --
     9 -- This block of comments will not be included in
    10 -- the definition of the procedure.
    11 -- ================================================
    12 SET ANSI_NULLS ON
    13 GO
    14 SET QUOTED_IDENTIFIER ON
    15 GO
    16 -- =============================================
    17 -- Author:        <Author,,Name>
    18 -- Create date: <Create Date,,>
    19 -- Description:    <Description,,>
    20 -- =============================================
    21 CREATE PROCEDURE <Procedure_Name, sysname, ProcedureName> 
    22     -- Add the parameters for the stored procedure here
    23     <@Param1, sysname, @p1> <Datatype_For_Param1, , int> = <Default_Value_For_Param1, , 0>, 
    24     <@Param2, sysname, @p2> <Datatype_For_Param2, , int> = <Default_Value_For_Param2, , 0>
    25 AS
    26 BEGIN
    27     -- SET NOCOUNT ON added to prevent extra result sets from
    28     -- interfering with SELECT statements.
    29     SET NOCOUNT ON;
    30 
    31     -- Insert statements for procedure here
    32     SELECT <@Param1, sysname, @p1>, <@Param2, sysname, @p2>
    33 END
    34 GO
    @声明变量,@@系统函数,#本地临时表,##全局临时 表
  • 相关阅读:
    win10 ,本地连接无法识别网络 ,无线正常,
    vba 声音
    win10 优化
    比较火和常用的命令
    手机电脑平板 查图纸、查点位图、查通病、自学维修知识等通通都有的工具
    e4a mysql
    e4a 对话框的 多选单选颜色日期时间
    e4s 文本操作 数组操作
    e4a sqlite案例
    e4a-窗口切换
  • 原文地址:https://www.cnblogs.com/AryaZ/p/7170148.html
Copyright © 2011-2022 走看看