32 - sum, min, max, avg (Otras funciones de agrupamiento)
Simulador
(Cuando presiona el botón "ejecutar el programa" se graban todos los cuadros de texto y se ejecuta el primero de la lista mostrando en una página el resultado.
)
Imprimir el precio mayor de la tabla articulos.
pagina1.asp
<%option explicit%> <html> <head> <title>problema</title> </head> <body> <% dim conexion set conexion = Server.CreateObject("ADODB.Connection") conexion.ConnectionString = "Provider=SQLOLEDB.1;" & _ "Data Source=.;" & _ "Integrated Security=SSPI;" & _ "Persist Security Info=False;" & _ "Initial Catalog=wi630629_aspya" conexion.Open dim registros set registros = Server.CreateObject("ADODB.RecordSet") registros.open "select max(precio) as preciomay from articulos",conexion if not registros.eof then response.write("Precio mayor de la tabla artículos:" & registros("preciomay")) else response.write("La tabla artículos está vacía") end if conexion.close %> </body> </html>
Retornar