Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <select class="form-control" id="tipo1" name="tipo1">
  2. <option value="" selected>TODOS</option>
  3. <option value="1">Opção 1</option>
  4. <option value="3">Opção 2</option>
  5. ...
  6. </select>
  7. <select class="form-control" id="tipo2" name="tipo2">
  8. ...
  9.  
  10. Id Tipo1 Tipo2 Tipo3 Tipo4 Valor
  11. 1 1 Null 2 3 100.00
  12.  
  13. select id from tabela
  14. where tipo1 is null
  15. and tipo2 is null
  16. and tipo3 is null
  17. and tipo4 is null
  18.  
  19. tipo1 is null (campo nulo)
  20.  
  21. tipo1 = "" (string vazia)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement