安卓SQLite数据库报错(1) no such column city_id
private static final String CREATE_COUNTRY="create table Country("
+"id integer primary key autoincrement,"
+"country_name text,"
+"country_code text"
+"city_id integer)";
找了好久都没有发现哪里错了。最后发现在country_code text后面少了一个逗号,晕死。