To remove the whole table : Drop Table : Table MySQL TUTORIALS


MySQL TUTORIALS » Table » Drop Table »

 

To remove the whole table


mysql>
mysql> show tables;
Empty set (0.05 sec)

mysql>
mysql> CREATE TABLE Employee(
    ->     id            int,
    ->     first_name    VARCHAR(15),
    ->     last_name     VARCHAR(15),
    ->     start_date    DATE,
    ->     end_date      DATE,
    ->     salary        FLOAT(8,2),
    ->     city          VARCHAR(10),
    ->     description   VARCHAR(15)
    -> );
Query OK, rows affected (0.03 sec)

mysql>
mysql> show tables;
+----------------+
| Tables_in_test |
+----------------+
| employee       |
+----------------+
row in set (0.00 sec)

mysql>
mysql>
mysql> DROP TABLE employee;
Query OK, rows affected (0.02 sec)

mysql>
mysql> show tables;
Empty set (0.00 sec)

mysql>
mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Table
» Drop Table