Articulos PHP
- 3 PHP junto con MySQL.
- 1.2 Enunciados de salida echo.
- 2 Enunciados if.
- 1.6 Unir comparaciones.
- 2.6 Saltando un ciclo con CONTINUE
Warning: Use of undefined constant php - assumed 'php' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 128
Articulos Jquery
- 2.6 El efecto fadeIn y fadeOut.
- 2.4 Usando AJAX con el método .post().
- 2.1 El selector $(this).
- 1.8 Creando elementos con Jquery
- 1.5 El evento keypress
Warning: Use of undefined constant jquery - assumed 'jquery' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 137
Articulos CSS
- 1.1 Como incluir estilos en una página web.
- 1.2 Estructura de los estilos CSS.
- 1 Hojas de estilo CSS.
Warning: Use of undefined constant css - assumed 'css' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 146
Articulos Mysql
- 3.8 Cuentas de usuario MySQL
- 1.1 Consulta SELECT.
- 1.6 Ordernar valores con ORDER BY.
- 1.9 Seleccionar filas con la expresión columna=valor
- 1.8 Seleccionando registros con WHERE.
Warning: Use of undefined constant mysql - assumed 'mysql' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 155
Warning: Use of undefined constant tema - assumed 'tema' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 199
Warning: Use of undefined constant tema - assumed 'tema' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 220
Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 220
1.4 Realizar la suma de todos los valores con SUM().
En algunas ocasiones tal vez sea útil obtener la suma de todos los valores de una determinada columna, para ello usaremos la función SUM(), su sintaxis es como sigue:
SUM(nombreColumna)
Para entender un poco mejor supongamos que tenemos una tabla llamada ‘anuncios’ en la cual hay una columna llamada ‘edadMinima’ con puros valores numéricos y queremos obtener la suma de todos estos valores, la sintaxis serÃa como sigue:
SELECT SUM( edadMinima ) FROMÂ `anuncios`
Ahora si quisiéramos obtener la suma de otra columna, únicamente tendrÃamos que volver a usar la función SUM() de la siguiente forma:
SELECT SUM( edadMinima ) , SUM( edadMaxima ) FROMÂ `anuncios`
Warning: Use of undefined constant tema - assumed 'tema' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 225
Realizar una suma con SUM()
Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 225
1.5



