ASP.NET。提示报错:“关键字 'user' 附近有语法错误。” 大家帮我看看我的代码哪里有问题,感谢!

我是根据BookID=0001查找数据库book表中的UserID,然后根据查找出来的UserID再查找user表中的信息。大家帮我看看哪里有问题,万分感谢!!//Sql... 我是根据BookID=0001查找数据库book表中的UserID,然后根据查找出来的UserID再查找user表中的信息。大家帮我看看哪里有问题,万分感谢!!
// SqlCommand comm2 = new SqlCommand("select * from user where UserID='" + UserID + "'", conn);

//报错:关键字 'user' 附近有语法错误

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Data;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string bookID="0001";
string str = "Server=.;DataBase=warnier;User=sa;Password=521521";
SqlConnection conn = new SqlConnection(str);
conn.Open();

SqlCommand comm = new SqlCommand("select * from book where BookID='" + bookID + "'", conn);
SqlDataReader dr = comm.ExecuteReader();
string UserID=null;
if (dr.Read())
{
UserID = dr[2].ToString();
dr.Close();
}

SqlCommand comm2 = new SqlCommand("select * from user where UserID='" + UserID + "'", conn);
SqlDataReader dr2 = comm2.ExecuteReader();
if (dr2.Read())
{
Label8.Text = dr2[4].ToString();
}
dr2.Close();

conn.Close();
}
}
展开
 我来答
匿名用户
2014-12-23
展开全部
select * from dbo.[user] where UserID=0
user是系统表,最好加上[]
不太确定是不是这个问题,你可以试试
百度网友6bbfdab
2014-12-23 · 超过68用户采纳过TA的回答
知道小有建树答主
回答量:100
采纳率:0%
帮助的人:108万
展开全部
user 用中括号括住 sql关键字 不能随便用的

不行的话 把语句贴在数据库 执行下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式