两表关联查询提示 From子句语法错误
使用Accecss,,,两个表关联查询,下面的SQL语句老是提示 From子句语法错误,请各位帮我看一下了,非常谢谢 ......
datacon(); //初始化链接
OleDbDataAdapter thisadpt=new OleDbDataAdapter("Select user.uid,user.logtime,user.score,article.uid,article.title,article.author,article.content,article.uptime [bold]from user inner join article on user.uid=article.uid[/bold]",thisCON);
DataSet theSet=new DataSet();
thisadpt.Fill(theSet);
......