if i write delete * from tablename in mysql ,all rows get delete it there any way to get the data back in mysql in that table
+3
A:
No, there isn't.
And the correct query is DELETE FROM tablename
. (without *
)
True Soft
2010-07-27 12:17:44