String sqlQueryToCreateUndergraduateDetailsTable = "create table if not exists " + TABLE_NAME_GPA + " ( " + BaseColumns._ID + " integer primary key autoincrement, " +"COLUMN_NAME" + " text not null, " +"COLUMN_SURNAME" + " text not null, " +"COLUMN_DATE_OF_BIRTH"+ "text not null, +"COLUMN_ADDRESS" +"text not null," +"COLUMN_EMAIL" +"text not null," +"COLUMN_PHONE_NUMBER" +"text not null," +"COLUMN_CITY" +"text not null," +"COLUMN_PTYE_PAYMENT" +"text not null," +"COLUMN_SHIPPING_TYPE" +"text not null," +"COLUMN_CARD_NUMBER" + "text not null," +"COLUMN_Password" +"text not null);";
データベースに保存しようとしていますが、「エラーコード= 1、msg=テーブルCustomer_details_tableに「カード番号」という名前の列がありません」というエラーが表示されます。