Posts by zidenis • 26 points
1 post
-
1
votes2
answers1252
viewsA: How to remove duplicate query values in two tables?
In SQL, a simple but not very efficient solution for processing: select email, nome, id from usuarios union select email, nome, id from alunos where email not in (select email from usuarios);…