Articulos PHP
- 2.7 Enlazar un programas con include.
- 1.8 Arreglos o array.
- 1.5 Hacer comparaciones de valores.
- 3.3 Transformando series en variables.
- 2.5 Saliendo del ciclo con BREAK.
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
- 1.2 Usar CDN para utilizar Jquery
- 1.8 Creando elementos con Jquery
- 1.6 El método preventDefault.
- 2 Añadiendo elementos a la página con append().
- 1.3 Empezando a utilizar Jquery
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 Hojas de estilo CSS.
- 1.2 Estructura de los estilos 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
- 1.6 Ordernar valores con ORDER BY.
- 2.3 Seleccionando registros con NOT IN.
- 4 Creando cuentas MySQL.
- 2.4 Seleccionando filas con LIKE y WHERE
- 2.8 Conjunción externa de tablas.
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.5 Obtener el valor más pequeño de una columna con la función MIN().
En ocasiones necesitaremos obtener en valor menor de una columna, para ello usaremos la función MIN(), su sintaxis es como sigue:
MIN(nombreColumna)
Para entender un poco mejor, supongamos que tenemos una tabla llamada ‘anuncios’ y que dicha tabla tiene una columna llamada ‘edadMinima’ de la cual se requiere su valor más pequeño, entonces usarÃamos la siguiente consulta:
SELECT MIN( edadMinima ) FROMÂ `anuncios`
Ahora si necesitáramos obtener el valor mÃnimo de otra columna únicamente tendremos que usar nuevamente la función MIN() como se muestra a continuación:
SELECT MIN( edadMinima ) , MIN( 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
Obtener el valor más pequeño de una columna.
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.4