Base De Datos Producto

  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Base De Datos Producto as PDF for free.

More details

  • Words: 44
  • Pages: 2
BASE DE DATOS PRODUCTO

Tabla Productos:

Consultas: Consulta 1:

SELECT MAX(producto.valorUnitario) FROM producto;

Consulta 2:

SELECT MIN(valorUnitario) FROM producto;

Consulta 3:

SELECT avg (cantidad) AS Producto FROM producto;

Consulta 4:

SELECT stdev(valorUnitario) AS Desviacion FROM producto;

Consulta 5:

SELECT sum(cantidad*valorUnitario) FROM producto;

Consulta 6:

Related Documents