c# SQL语句错误!急,在线等!提示,附近有语法错误。
stringsql=string.Format("selectcount(*)fromuwhereuno={0},password={1}",this.cboId.Tex...
string sql = string.Format("select count(*) from u where uno={0} , password={1}", this.cboId.Text.Trim(), this.txtKey.Text.Trim());
,改为and,提示列名sa无效。加上group by也不对提示列名sa无效。 展开
,改为and,提示列名sa无效。加上group by也不对提示列名sa无效。 展开
6个回答
展开全部
正解在这里:
我想楼主的数据库uno,password这两列应该是字符串类型的吧。
string sql = string.Format("select count(*) from u where uno='{0}' and password='{1}'", this.cboId.Text.Trim(), this.txtKey.Text.Trim());
我想楼主的数据库uno,password这两列应该是字符串类型的吧。
string sql = string.Format("select count(*) from u where uno='{0}' and password='{1}'", this.cboId.Text.Trim(), this.txtKey.Text.Trim());
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string sql = string.Format("select count(*) from u where uno={0} and password={1}", this.cboId.Text.Trim(), this.txtKey.Text.Trim());
把逗号改为and就Ok了
列名无效有可能是你的数据库表中没有这个字段
要使用group by必须在select后面选择的字段中包含分组的字段
把逗号改为and就Ok了
列名无效有可能是你的数据库表中没有这个字段
要使用group by必须在select后面选择的字段中包含分组的字段
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-12-12
展开全部
三楼正解, 怎么where条件有逗号的,呵呵 不是AND 就是 OR
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你试试这个:
string sql="select * from u where uno='"+this.cbold.Text.Trim()+"' ,password='"+this.txtKey.Text.Trim()+"'";
string sql="select * from u where uno='"+this.cbold.Text.Trim()+"' ,password='"+this.txtKey.Text.Trim()+"'";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把大括号去掉
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询