要清空数据库表,我使用此SQL查询:
TRUNCATE TABLE `books`
如何使用Django的模型和ORM截断表格?
我试过这个,但它不起作用:
Book.objects.truncate()
python sql django
django ×1
python ×1
sql ×1