Problem with mysql console
When i login in to my mysql account i doing something like this:
mysql>TRUNCATE MyTable
->
->
->
but there is no response informations but only more ->
with every pressed Enter. It is right that there is only more ->
and nothing else with every pressed Enter?
For more i can see on my mysql based page开发者_开发问答 that data which i want to remove is still existing. It is normal?
You need to terminate the statement with a semicolon ;
mysql>TRUNCATE MyTable;
精彩评论