I am new in android sqlite and I want to know what is the point of using null in some sqlite codes. for example here with ContentValues :
ContentValues values = new ContentValues();
values.put(KEY_VALUE1, x.getVALUE1());
values.put(KEY_VALUE2, x.getVALUE2());
db.insert(TABLE_NAM, null, values);
or with select:
Cursor cursor = db.rawQuery("SELECT * FROM " + TABLE_NAM , null);