首页 相关文章 存贮过程

存贮过程

CREATE PROCEDURE login_verify

(
@community_id int, --拿值
@username varchar(20),
@password varchar(40),
@result tinyint output
)

AS

set nocount ON

declare @service_deadline_date smalldatetime,@community_setting_max_online_count int ---定义一个变量为 短日期格式

select @community_setting_max_online_count=community_setting_max_online_count,@service_deadline_date=service_deadline_date from community_info where community_id=@community_id --这里是求最大登录人数

if datediff(d,@service_deadline_date,getdate())10 --其实这个是限制用户的使用期,求...[ 查看全文 ]

2016-01-29 标签:

存贮过程的相关文章

手机页面
收藏网站 回到头部