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
-
Entrevista hecha por Freddie Armando Romero. El Padre Carlos Rosell es sacerdote diocesano, ex párroco de la iglesia “Sagrado Corazón de Ma...
-
Por Freddie Armando Romero Paredes. El turismo de naturaleza es la actividad, por la cual se aprecia y revaloriza el medio natural que tiene...