Está en la página 1de 1

SELECT distinct PID,DESCRIPCION FROM PRODUCTOS WHERE PRECIO >450

select tid from texitencias where pid= 'P25'


SELECT distinct PEDID, FPED FROM PEDIDOS WHERE 'A2'>'11' AND 'A5'>'11'
select distinct * from alcamanes
select distinct descripcion, precio, precio*0.016 as iva from productos
select distinct descripcion from productos where descripcion='televisor M1''tele
visor M2'
select distinct descripcion from productos where descripcion=
select distinct descripcion from productos where peso >=10 and peso <30
SELECT TID, COUNT (*) NUMERO_TIENTAS FROM TEXITENCIAS GROUP BY TID
select sum(precio) as cantidad_total from productos
select sum(precio)/2 as media from productos
SELECT distinct * FROM TIENDAS
/*pendiente SELECT distinct peso, precio FROM productos*/
SELECT * FROM productos INNER JOIN
pedidos ON productos.descripcion=DEPARTAMENTO.IDDEPARTAMENTO
select distinct descripcion, cant from productos,pedidos where cant>20
select distinct aloc, tloc from alcamanes,tiendas group by aloc, tloc

También podría gustarte