01. Valores diferentes a
> select * from nombre_tabla where campo != "valor";
02. Valores mayores o iguales a
> select * from nombre_tabla where campo >= valor;
03. Valores menores o iguales a
> select * from nombre_tabla where campo <= valor;