-1
Hi, I want a help with SQL query.
There are two identical tables but with different recorded data in each one. How can I get the data from both tables? As if they were two selects in each table?
Type: select * tabela1
,select * tabela2
But I would like the return to be only one.. For now without any condition/comparison, just return all data from both tables.
I’m programming in python, can I do that in programming? I believe so but I think it would be slower, right?
If I can understand the desired result try UNION:
select * tabela1 UNION select * tabela2
. Perhaps, depending on the desired result, it is necessaryUNION ALL
– anonimo