したこと
mysqlでDELETE FROM テーブル名;をして、okとなったのでうまくいったと思ったのですが、
消えないです。
mysql> show tables;
+---------------------------------------+
| Tables_in_lifemanagements_development |
+---------------------------------------+
| ar_internal_metadata |
| schema_migrations |
| taskhelpers |
| taskmanagements |
| timehelpers |
| timemanagements |
| users |
+---------------------------------------+
7 rows in set (0.00 sec)
mysql> DELETE FROM taskhelpers;
Query OK, 0 rows affected (0.00 sec)
mysql> show tables;
+---------------------------------------+
| Tables_in_lifemanagements_development |
+---------------------------------------+
| ar_internal_metadata |
| schema_migrations |
| taskhelpers |
| taskmanagements |
| timehelpers |
| timemanagements |
| users |
+---------------------------------------+
7 rows in set (0.00 sec)
回答2件
あなたの回答
tips
プレビュー