Hi, I'd like to know if it's possible to execute a query in MySQL, without it really beaing executed: just to know if it would return something, but not actually doing anything to the database.
I have may deletes to do on different tables with relations, and I would like to test the delete functions first, without actually deleting anything. Because I would have to re-insert data each time I test the function...
Thanks.