Is it possible to have Django provide me the generated SQL for an update query without actually executing it?
I tried the following, but I can't actually do .query at the end, because the update query is evaluated. Therefore an int is returned, representing the number of updated rows.
str(Foobar.objects.all().update(example=F("created")).query)