开发者

Problem with mysql console

开发者 https://www.devze.com 2023-04-03 02:16 出处:网络
When i login in to my mysql account i doing something like this: mysql>TRUNCATE MyTable -> ->

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;
0

精彩评论

暂无评论...
验证码 换一张
取 消