Posts by Tacio Litke • 26 points
1 post
-
1
votes1
answer38
viewsA: Filter data in sql
Try something like that: SELECT nome, cidade, email1, email2 FROM clientes WHERE (email1 is not null and email1 <> '') OR (email2 is not null and email2 <> '')…