存储过程中的关键字--ASGO的含义
Posted 成成先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程中的关键字--ASGO的含义相关的知识,希望对你有一定的参考价值。
========================As、Go说法一=======================
GO 用于在 SSMS 和 SQLCMD 中将其之前的 T-SQL 语句作为一个批处理提交给 SQL Server 实例。GO 不是 T-SQL 语句,只是由这些特定客户端指定的提交批处理的方式。批处理(Batch)是 SQL SERVER 客户端作为一个单元发送给服务的一个或多个 T-SQL 语句的集合-客户端将此集合一次性的提交给实例,而服务会将其编译为一个执行计划。 启用 ANSI_NULLS,所有与空值的比较运算结果为 UNKNOWN;否则空值与空值的比较结果为 TRUE。
启用 QUOTED_IDENTIFIER 表示使用双引号( "") 作为分隔符(当标示符不符合 SQL SERVER 的命名规则时可以使用 "" 或 [] 作为分隔符)。
AS 其实是关键字,在存储过程中可以理解为将其下(到 GO)的 T-SQL 语句,定义为存储过程。
========================As、Go说法二=======================
GO 不是 Transact-SQL语句;它是可由 sqlcmd 和 osql 实用工具以及SQL Server Management Studio 代码编辑器识别的命令。
SQL Server 实用工具将 GO解释为应该向SQL Server实例发送当前批Transact-SQL语句的信号。当前批语句由上一GO命令后输入的所有语句组成,如果是第一条GO命令,则由即席会话或脚本开始后输入的所有语句组成。
GO 命令和 Transact-SQL语句不能在同一行中。但在GO命令行中可包含注释。
AS 存储过程语法的一部分,AS之前是存储过程参数和属性定义,AS后面表示存储过程内容的定义
- USE [database_name]
- GO
- SET ANSI_NULLS ON
- GO
- SET QUOTED_IDENTIFIER ON
- GO
- -- =============================================
- -- Author: <Author,,Name>
- -- Create date: <Create Date,,>
- -- Description: <Description,,>
- -- =============================================
- CREATE PROCEDURE [dbo].[proc_user_test]
- (
- -- 设置参数
- @citizenId char(10), -- 业主id
- @goodsId char(12), -- 商品id
- @goodsNum int, -- 商品个数
- @ElectronDeviceNo varchar(20), -- 电子秤编号
- @exchangeInt int, -- 兑换积分
- @recycleExchangeInt int, -- 兑换回收积分
- @exchangetime datetime, -- 兑换时间
- @int int output -- 用于输出的参数
- )
- AS
- BEGIN try
- -- 设置局部变量
- declare @throwExchangeInt int; -- 兑换投放积分,默认值为0,如何设置?
- declare @userId char(10); -- 操作人员id
- declare @primaryKey varchar(20); -- 唯一标识
- begin tran
- -- insert into gar_ElectronDeviceGoodsOrder(?, ?, ?, ?)
- -- 插入电子秤商品兑换记录信息
- insert into gar_ElectronDeviceGoodsOrder(citizenId, goodsId, goodsNum,
- ElectronDeviceNo, exchangeInt, throwExchangeInt,
- recycleExchangeInt, pickExchangeInt, userId, exchangetime)
- values (@citizenId, @goodsId, goodsNum,
- @ElectronDeviceNo, @exchangeInt, 0,
- @recycleExchangeInt, 0, @userId, @exchangetime);
- -- 在这里,是否要获得主键唯一标识?
- set @primaryKey = @@IDENTITY
- -- 更新业主积分变化
- update gar_Citizen set intCurrency = (intCurrency - @exchangeInt),
- intSpend = (intSpend + @exchangeInt),
- recycleExchangeInt = (recycleExchangeInt + @recycleExchangeInt)
- where citizenId = @citizenId;
- end try
- begin catch
- set @int = Error_severity();
- if(@@trancount > 0) begin
- rollback tran
- end
- end catch
- if(@@trancount > 0)
- begin
- commit tran
- set @int = 0;
- end
- select @int as code -- 什么意思?不懂
- -- 以下4行代码是建立存储过程时,系统自动添加的语句
- -- SET NOCOUNT ON;
- -- Insert statements for procedure here
- -- SELECT <@Param1, sysname, @p1>, <@Param2, sysname, @p2>
- --END
- GO
以上是关于存储过程中的关键字--ASGO的含义的主要内容,如果未能解决你的问题,请参考以下文章
MySQL存储过程定义中的特性(characteristic)的含义
BOM 请给javascript一个说法-------Day33