有兴趣的拿去研究,赚点小钱。
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].
GO
SET QUOTED_IDENTIFIER ON ...
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
CREATE PROCEDURE [dbo].
@AccountID varchar(21),
@Password varchar(13),
@nRet smallint OUTPUT,
@strRea ...