在我的Android应用程序中,我试图通过一个sql命令插入60条记录
INSERT INTO table (title, type, name, location) VALUES
('title_1', 'type_1', 'name_1', 'location_1'),
('title_2', 'type_2', 'name_2', 'location_2'),
('title_3', 'type_3', 'name_3', 'location_3'),
.....
('title_60', 'type_60', 'name_60', 'location_60');
但是,它给了我一个错误:
android.database.sqlite.SQLiteException: all VALUES must have the same number of terms (code 1)
这是什么意思?