MySQL Point-in-Time (Incremental) Recovery Using the Binary Log
Point-in-time recovery refers to recovery of data changes made since a given point in time.
Point-in-time principles:
the server must be started with the "--log-bin" option to enable binary logging
To restore data from the binary log, you must know the name and location of the current binary log files.
To see a listing of all binary log files, use this statement:
Find where the lob-bins are located on your host. I do this by looking into your my.cnf file(located in /etc/my.cnf normally).
To get the content of the log you need to use the mysqlbinlog tool that comes with mysql installation.
You can alter the output and use it as you wish to rollback or restore