在存储过程中验证用户的最简单方法?

编程入门 行业动态 更新时间:2024-10-27 23:27:47
本文介绍了在存储过程中验证用户的最简单方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我需要一个存储过程,它可以通过发送login 和password 来检查登录尝试时他们是否是有效用户如果它们在数据库中匹配.有没有简单的方法可以做到这一点?

I need a stored procedure that can check to see if, on a login attempt, whether or not they are a valid user by sending the login and password to see if they match in the database. Is there a simple way to do this?

推荐答案

如果没有更多信息,我目前能提供的最好的是:

Without more information the best I can offer for the moment is:

CREATE STORED PROCEDURE CheckPassword @username VARCHAR(20), @password varchar(20) AS BEGIN SET NOCOUNT ON IF EXISTS(SELECT * FROM usertable WHERE username = @username AND password = @password) SELECT 'true' AS UserExists ELSE SELECT 'false' AS UserExists END

根据您的回复修改查询 - 这将返回字符串true"或false",如果您愿意,您可以分别用位值 1 和 0 替换它们.

Query amended based on your response - this will return the string 'true' or 'false' you could replace them with bit values 1 and 0 respectively if you prefer.

更多推荐

在存储过程中验证用户的最简单方法?

本文发布于:2023-07-21 11:04:28,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1176876.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:最简单   过程中   方法   用户

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!