Skip to content

Instantly share code, notes, and snippets.

@juque
Created March 28, 2012 18:59
Show Gist options
  • Select an option

  • Save juque/2229460 to your computer and use it in GitHub Desktop.

Select an option

Save juque/2229460 to your computer and use it in GitHub Desktop.
mysql> select * from calendarios22010 where escuela_id = 53 and item_id = 3 and year = 2012;
+---------------+------------+---------+----------------------------------------------------------------+---------------------+---------------------------+------+
| calendario_id | escuela_id | item_id | calendario_detalle | calendario_cantidad | calendario_valor_unitario | year |
+---------------+------------+---------+----------------------------------------------------------------+---------------------+---------------------------+------+
| 22565 | 53 | 3 | Movilizacion alumnos y alumnas de la Esp. Atencion de Parvulos | 38 | 5263 | 2012 |
| 22563 | 53 | 3 | Movilizacion alumno y alumnas Esp. Agropecuaria | 23 | 15217 | 2012 |
| 22564 | 53 | 3 | Movilizacion alumnos y alumnas de la Esp. Administracion | 48 | 6042 | 2012 |
+---------------+------------+---------+----------------------------------------------------------------+---------------------+---------------------------+------+
3 rows in set (0.00 sec)
mysql> select * from calendarios22010 where escuela_id = 53 and item_id = 3 and year = 2012;
+---------------+------------+---------+----------------------------------------------------------------+---------------------+---------------------------+------+
| calendario_id | escuela_id | item_id | calendario_detalle | calendario_cantidad | calendario_valor_unitario | year |
+---------------+------------+---------+----------------------------------------------------------------+---------------------+---------------------------+------+
| 22565 | 53 | 3 | Movilizacion alumnos y alumnas de la Esp. Atencion de Parvulos | 26 | 5263 | 2012 |
| 22563 | 53 | 3 | Movilizacion alumno y alumnas Esp. Agropecuaria | 23 | 15217 | 2012 |
| 22564 | 53 | 3 | Movilizacion alumnos y alumnas de la Esp. Administracion | 42 | 6042 | 2012 |
+---------------+------------+---------+----------------------------------------------------------------+---------------------+---------------------------+------+
3 rows in set (0.00 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment