(i’m a django newbie)
We need to delete certain records from a django table (comments).
I prefer to do this from the admin and not directly using the database engine (mysql, btw), because of the naive assumption that it will handle relastionships or software restrictions.
there are hundreds or thousands of records, and the ideal was to put a WHERE query somehow, and select all.
how can I filter the recordset in the admin?
django: latest stable.
thank you
python script / django console is an option?
there you could simply
of course not the best to try directly on production environments 🙂