Podemos apenas especificar em uma consulta quais as colunas que devem ser mosrtada e utilizar algum operador. Exemplo:


Select nome_coluna1, nome_coluna2 where nome_coluna

 

Select nome, email from cliente where id_cliente in(1,2,3)

Select nome, email from cliente where email like ('alex%')

Select nome, cpf from cliente order by id_cliente desc

Select nome, cpf from cliente order by id_cliente asc

Select nome, cpf from cliente where id_cliente > 3 order by nome

Select nome, cpf from cliente where id_cliente < 3 order by nome

Select nome, cpf from cliente where id_cliente >= 3 order by nome

Select nome, cpf from cliente where id_cliente <=3 order by nome

Select nome, cpf from cliente order by nome, cpf