Diego Zabaleta wrote:

> mysql> select * from sist_adm;
> +----+----------+-------------+-------------------------------+
> | id | nombre   | so          | descripcion                   |
> +----+----------+-------------+-------------------------------+
> |  1 | master   | AIX 4.2     | Equipo de comunicaciones      |
> |  2 | zeus     | Solaris 2.6 | Sistema de pruebas.           |
> |  3 | donald   | Solaris 2.6 | Sistema de desarrollo         |
> |  4 | apserver | Solaris 2.6 | Sistema standby de produccion |
> +----+----------+-------------+-------------------------------+
> 4 rows in set (0.00 sec)
>
> mysql> select * from sist_adm where id>1;
> Empty set (0.00 sec)

    Dunno, this works for me just fine.  I created a table just like yours,
filled it in, and made the same selects, and it worked as it should:

mysql> select * from sist_adm;
+----+----------+-------------+-------------------------------+
| id | nombre   | so          | descripcion                   |
+----+----------+-------------+-------------------------------+
|  1 | master   | AIX 4.2     | Equipo de comunicaciones      |
|  2 | zeus     | Solaris 2.6 | Sistema de pruebas            |
|  3 | donald   | Solaris 2.6 | Sistema de desarrollo         |
|  4 | apserver | Solaris 2.6 | Sistema standby de produccion |
+----+----------+-------------+-------------------------------+
4 rows in set (0.00 sec)

mysql> select * from sist_adm where id>1;
+----+----------+-------------+-------------------------------+
| id | nombre   | so          | descripcion                   |
+----+----------+-------------+-------------------------------+
|  2 | zeus     | Solaris 2.6 | Sistema de pruebas            |
|  3 | donald   | Solaris 2.6 | Sistema de desarrollo         |
|  4 | apserver | Solaris 2.6 | Sistema standby de produccion |
+----+----------+-------------+-------------------------------+
3 rows in set (0.00 sec)

    AMK4

--
W |
  |  I haven't lost my mind; it's backed up on tape somewhere.
  |____________________________________________________________________
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  Ashley M. Kirchner <mailto:[EMAIL PROTECTED]>   .   303.442.6410 x130
  SysAdmin / Websmith                           .     800.441.3873 x130
  Photo Craft Laboratories, Inc.             .        eFax 248.671.0909
  http://www.pcraft.com                  .         3550 Arapahoe Ave #6
  .................. .  .  .     .               Boulder, CO 80303, USA



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to