Re: free ERD tool for MySql

2004-12-01 Thread denys
Dana Henderson a écrit : Andrew, You can download a FREE version of MY dbPAL for MySQL at www.it-map.com to help you out with this. My product is free, it does database and data migrations, schema editing, data modeling, change management, database documentation and has ETL tools in there as

Re: free ERD tool for MySql

2004-12-01 Thread denys
Attila Horvath a crit : No I get the same problem and I'm from U.S.! :-( Attila It was just a temporary problem, I tried it again just now and it worked. Denys -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: detect rows that has zero values

2004-11-19 Thread denys
Louie Miranda a écrit : Im trying not to list the rows that has zero values. this is my current select statement: select id,country_city from rates_ocean order by country_city The fields that i have to detect are: fieldvalue1 fieldvalue2 fieldvalue3 how can i do this on mysql, ex: select country

Re: detect rows that has zero values

2004-11-19 Thread Bulant Denys
--- Michael Stassen [EMAIL PROTECTED] a écrit : denys wrote: SELECT country FROM Rates WHERE fieldvalue1 0 AND fieldvalue2 0 AND fieldvalue3 0 ORDER BY country is it what you want ? Gleb Paharenko wrote: Hello You may use query like this: select country