--CONSULTA SIMPLE DE DETERMINADOS CAMPOS--
select id_cliente, nombre, direccion from cliente
--CONSULTA SIMPLE DE TODA LA TABLA (TODOS LOS CAMPOS)--
select * from cliente
--SELECT CON VALORES UNICOS--
select distinct ciudad from cliente
--EJEMPLO DE COMO USAR DISTINCT
select distinct nombre, ciudad from cliente
--SELECT CON ALIAS EN LOS CAMPOS--
select id_cliente as id, nombre as nb, direccion as dir, telefono as tlf, ciudad as ciu from cliente
where ciudad='Lima'
--SELECT CON ALIAS EN LAS TABLAS--
select c.id_cliente, c.nombre, c.direccion, c.ciudad, ct.id_cliente, ct.nombre, ct.direccion, ct.ciudad
from
cliente as c
left join
cliente_temp as ct
on c.id_cliente=ct.id_cliente
--SELECT CON CASE WHEN
select id_cliente, nombre, direccion, telefono, ciudad,
case
when ciudad='Lima' then 1
when ciudad='LIMA' then 1
when ciudad='Callao' then 2
else 0
end as valor_ciudad,
case
when ciudad='Lima' then 'Estas en la ciudad de Lima'
when ciudad='LIMA' then 'Estas en la ciudad de Lima'
when ciudad='Callao' then 'Estas en la ciudad del Callao'
else 'Estas en nada'
end as estado_ciudad
from cliente
end
No hay comentarios:
Publicar un comentario