>When I compare two strings in mask (x.x.x.x) the comparation is not true (for my question :D)... look:
>select '3.2.0.13' > '3.2.0.2'            -> FALSE
>I want this command return TRUE, but it is returning FALSE.

select inet_aton('3.2.0.13') > inet_aton('3.2.0.2');
+----------------------------------------------+
| inet_aton('3.2.0.13') > inet_aton('3.2.0.2') |
+----------------------------------------------+
|                                            1 |
+----------------------------------------------+

PB


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to