私のアプリケーションでは、データベースを作成しました(以前はグループフィールドで正常に機能していました)。次に、もう1つのフィールド(グループと呼ばれます)を作成します。そのフィールドを作成しましたが、次のエラーが表示されます。
android.database.sqlite.SQLiteException: near "group": syntax error: create table incomexpense(_id integer primary key autoincrement,price text not null,description text not null,quantity text not null,total text not null,category text not null,recurrence text not null,date text not null,group text not null);
私の作成コマンド:
"create table incomexpense(_id integer primary key autoincrement,"+"price text not null,description text not null,"+"quantity text not null,"+"total text not null,"+"category text not null,"+"recurrence text not null,"+"date text not null,"+"group text not null);";