, что было более предпочтительным с точки зрения производительности и безошибочной причины, чтобы удалить всю строку из таблицы в sqlite в Android.
УДАЛИТЬ ЗАПРОС ИЛИ УДАЛИТЬ ТАБЛИЦУ И ПЕРЕГОВОРИТЬ ТАБЛИЦУ
Я нашел это из этой записи
it is more efficient to drop table and re-create it; and yes, You can use "IF EXISTS" in this case
DELETE FROM will cause SQLite to visit individual rows unless those rows have triggers, so it's generally reasonably efficient.
edited after 1 answer post
As the Droping the table using drop table query then internally delete query was used? As in one answer post