Select
-- 2. Liste todas as linhas e os campos cd_Comprador, nm_Comprador e ds_Email da tabela COMPRADOR select cd_Comprador, nm_Comprador, ds_Email from comprador
-- 3. Liste todas as linhas e os campos cd_Vendedor, nm_Vendedor e ds_Email da tabela --VENDEDOR em ordem alfabética. select cd_Vendedor, nm_Vendedor, ds_Email from vendedor order by nm_Vendedor
-- 4. Repita o comando anterior em ordem alfabética decrescente. select cd_Vendedor, nm_Vendedor, ds_Email from vendedor order by nm_Vendedor desc
-- 5. Liste todos os bairros do Estado de SP. select nm_bairro from bairro where sg_estado='SP'
--6. Liste as colunas cd_Imovel, cd_Vendedor e vl_Imovel de todos os imóveis do vendedor 2. select cd_Imovel, cd_Vendedor, vl_Imovel from imovel where cd_vendedor=2
--7. Liste as colunas cd_Imovel, cd_Vendedor, vl_Preco e sg_Estado dos imóveis cujo preço de
-- venda seja inferior a 150 mil e sejam do Estado do RJ. select cd_Imovel, cd_Vendedor, vl_Imovel, sg_Estado from imovel where vl_imovel < 150000 and sg_estado ='RJ'
--8. Liste as colunas cd_Imovel, cd_Vendedor, vl_Preco e sg_Estado dos imóveis cujo
-- preço de venda seja inferior a 150 mil, ou seja, do vendedor 1. select cd_Imovel, cd_Vendedor, vl_Imovel, sg_Estado from imovel where vl_imovel < 150000 or cd_vendedor = 1
--9. Liste as colunas cd_Imovel, cd_Vendedor, vl_Preco e sg_Estado dos imóveis cujo preço de --venda seja inferior a 150 mil e o vendedor não seja 2. select cd_Imovel, cd_Vendedor, vl_Imovel, sg_Estado from imovel where vl_imovel < 150000 and not cd_vendedor = 2
--10. Liste as colunas cd_Comprador, nm_Comprador, ds_Endereco e sg_Estado da tabela COMPRADOR em que o Estado seja nulo. select cd_Comprador, nm_Comprador, ds_Endereco, sg_Estado from comprador where sg_Estado is null
-- 11. Liste as colunas cd_Comprador, nm_Comprador, nm_Endereco e