UPD: Admin changed the title and I've found the solution: http://code.google.com/p/php-sql-parser/
I'm trying to convent sql query to php array.
For example: SELECT col_name FROM tbl_name WHERE col_name > 0;
Must return something like:
array(
'table' => 'tbl_name',
'value' => array('col_name'),
'where' => array('col_name > 0')
);
I've found this. Mb you know any better solution?