#1064 - 您的SQL语法有错误;在创建表时

时间:2016-03-20 04:19:15

标签: php mysql mysql-error-1064

我是MySQL的完整菜鸟,我可以尽可能多地使用细节。

  

#1064 - 您的SQL语法出错;查看与您的MySQL服务器版本对应的手册,以便在第1371行“D5F9F589C9C”附近使用正确的语法

public long nextLong() {
  return ((long)next(32) << 32) + next(32);
}

/ *!40000 ALTER TABLE -- Dumping data for table wcrp_gameserver.accountnotes: ~3,090 rows (approximately) DISABLE KEYS * /;

accountnotes

^这是查询,这是第1371行:

INSERT INTO `accountnotes` (`noteid`, `accountid`, `setby`, `seton`, `note`) VALUES

1 个答案:

答案 0 :(得分:0)

尝试使用以下SQL语句

public View getView(int position, View convertView, ViewGroup parent) {
     ImageView imageView=new ImageView(context);
     imageView.setImageBitmap(list.get(position).getBitmap());
     imageView.setLayoutParams(new AbsListView.LayoutParams(
     (int) (parent.getWidth() / DataUtils.num),//DataUtils.num=3
     (int) (parent.getWidth() / DataUtils.num)));
     imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
     return imageView;
}

如果您想添加,删除或修改列。

如果您只想插入一行,则无需使用ALTER TABLE。

也就是说,根据给出的信息,您似乎只需要删除评论

ALTER TABLE table_name
ADD column_name datatype

我会确保在帐号表中存在 noteid,accountid,setby,seton,note 列,并根据数据类型设置值。