Hi James,
I'm curious... why dropping down from the ORM and doing a single query
wouldn't be portable?
I understand that it would happen if you use some kind of stored
procedure in the DB, but I guess a single ANSI SQL would do it.
Thanks!
- Alceu
Em 31/05/2017 17:29, James Schneider escreveu:
If I want to get the total count from both tables it can be done
like this,
|
author_count =Author.objects.count()
publisher_count =Publisher.objects.count()
|
My concern is that this results in two different queries to the
database. Can it be done with a single query call?
Probably not with the standard ORM and the model setup you provided
with no relation between the tables. You'll likely have to drop down
to raw SQL. I'd do testing. I doubt you'll have much of a performance
gain by combining the two queries in to one since you are just doing a
count and both tables have unique indexes, aside from saving the
overhead of one SQL call (not the actual query itself). Two calls
would keep the code simple and portable, which to me is more important
than a marginal gain in performance.
-James
--
You received this message because you are subscribed to the Google
Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to django-users+unsubscr...@googlegroups.com
<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to django-users@googlegroups.com
<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciVxVrzLuF7ASWiC34A2MenWvJd3P1GXsP%2Bi-mYQ9FuVvg%40mail.gmail.com
<https://groups.google.com/d/msgid/django-users/CA%2Be%2BciVxVrzLuF7ASWiC34A2MenWvJd3P1GXsP%2Bi-mYQ9FuVvg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Django
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/657e58a2-411c-8e8b-0475-4537417d3488%40gmail.com.
For more options, visit https://groups.google.com/d/optout.