in reply to Sybase to MySQL

Try running the Sybase SQL and see what happens in MySQL. You might need a conversion table so that when you see this 'type' of Sybase SQL, then it needs to convert it to a MySQL equivalent before it is run in MySQL database.

Replies are listed 'Best First'.
Re^2: Sybase to MySQL
by Anonymous Monk on Oct 06, 2009 at 18:12 UTC
    Obvious differences:
    Sybase: SET rowcount 10 SELECT column FROM table
    MySQL: SELECT column FROM table LIMIT 10