Assume we have a SQL DELETE FROM sys_user WHERE id = '1001'
, if execute with MySQl got things like:
Query OK, 1 row affected...
And the recored with id 1001 deleted, how can I get the number for a SQL affected without really execute it? For the previous SQL, without delete the record and got 1 row affected
.