How do you delete a row in a Django database at the interpreter level. I'm troubleshooting a database and I would like the ability to target specific rows in a Django sqlite3 database.
Currently I can create entries in the database as follows:
>> Item.objects.create(text='Item A')
Which I can view in the database using:
>> for p in Item.objects.raw('SELECT * FROM appName_model'):
... print(p.text)
...
And I correctly get the database contents (their text fields).
Having trouble with targeting a specific row by index, text_field or by some other attribute. I am troubleshooting directly at the Python interpreter.