Union query support? #1578
Unanswered
alexanderankin
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi tortoise-orm maintainers and community,
I was wondering if anybody out there was doing union queries - if tortoise supports those.
create table t1(id varchar(32), data text); create table t2(id varchar(32), data text, category int); select id, data from t1 union select id, data from t2;
thanks.Beta Was this translation helpful? Give feedback.
All reactions