Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなクエリを使用した場合のパフォーマンスの違いを知りたいと思っています。
query = MyModel.objects.filter(pk=1)
と
query = MyModel.objects.raw("SELECT * FROM my_models WHERE model_id = 1 ")
また、なぜこのようなパフォーマンスの違いがあるのか詳しく教えてください。
どうもありがとう、サケット