Entrada destacada
Freddie Armando Romero Paredes Plans
Freddie Armando Romero Plans Leer más publicaciones en Calaméo
lunes, 21 de noviembre de 2022
domingo, 20 de noviembre de 2022
lunes, 14 de noviembre de 2022
domingo, 13 de noviembre de 2022
viernes, 11 de noviembre de 2022
lunes, 7 de noviembre de 2022
domingo, 6 de noviembre de 2022
martes, 1 de noviembre de 2022
Select * from customers
--ORDER BY ASC--
select * from customers
order by contactname asc
select * from customers
order by country asc
select * from customers
order by postalcode asc
--ORDER BY DESC--
select * from customers
order by contactname desc
select * from customers
order by country desc
select * from customers
order by postalcode desc
--WHERE--
select * from customers
where country='Canada'
select * from customers
where country='USA'
select * from customers
where customerid=48
--WHERE CON MÁS DE UNA CONDICIÓN--
select * from customers
where
country='USA' and customerid > 50 --INTERSECCION DE CONJUNTOS
select * from customers
where
country='USA' or customerid > 50 --union DE CONJUNTOS
select * from customers
where
country='USA' or customerid > 50 or customerid < 25 --UNION DE CONJUNTOS
select * from customers
where
country='USA' and customerid > 50 and city like 'A%' --INTERSECCION DE CONJUNTOS
select * from customers
where
country='USA' and customerid > 50 and city like '%a%' --INTERSECCION DE CONJUNTOS
select * from customers
where
country in ('USA','Canada') and customerid > 50
select * from customers
where
country <> 'Canada'
select * from customers
where
not country='Canada'
select * from customers
where
country in ('France','Argentina','Spain') and contactname like 'P%'
Popular Posts
-
Soy Freddie Armando Romero Paredes. Tengo 35 años de edad. Nací el 25 de febrero de 1986 en el Hospital Edgardo Rebagliati Martins de Jesú...