where语句 三个条件

stringsql="selectcount(*)fromtLoginwhereuserName='"+userName+"'userPwd='"+userPwd+"'a... string sql = "select count(*) from tLogin where userName='" + userName + "' userPwd='" + userPwd+"' and userIdentity=" + userIdentity;
编译时总提示我int ret = (int)cmd.ExecuteScalar(); 等号附近有错误
是我的SQL语句错误吗? where后接三个条件 我写的对吗?
展开
 我来答
CloudPRose
推荐于2018-05-14 · TA获得超过5175个赞
知道大有可为答主
回答量:3175
采纳率:66%
帮助的人:862万
展开全部
PK说的对,少了一个AND,建议你改写如下:
string sql = @"
SELECT COUNT(*)
FROM tLogin
WHERE (userName = '" + userName + @"')
AND (userPwd = '" + userPwd + @"')
AND (userIdentity = " + userIdentity + ")";
不过我更建议你把3个参数改成参数化输入,否则很容易被注入。
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
LK_soso
2009-10-13 · TA获得超过278个赞
知道小有建树答主
回答量:351
采纳率:0%
帮助的人:188万
展开全部
这样写:
string sql = @"select count(*) from tLogin where "+
"userName='" + erName + "' "+
" and userPwd='" + userPwd+"' "+
"and userIdentity= " + userIdentity;

userIdentity这一列是int类型的吗?不是的话要加''。
这样分层写好就行了。
你单步运行,直接看sql语句很容易的,然后把sql语句在数据库中运行下,看有结果没,就知道sql语句是否错误了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
一只白馒头0et
2009-10-13 · TA获得超过398个赞
知道小有建树答主
回答量:877
采纳率:0%
帮助的人:335万
展开全部
and 少了。
string sql = "select count(*) from tLogin where userName='" + userName + "' and userPwd='" + userPwd+"' and userIdentity=" + userIdentity;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
PK基本靠飞
2009-10-13
知道答主
回答量:25
采纳率:0%
帮助的人:0
展开全部
+ userName + "' userPwd='" 好像少了一个and
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式