Example : DROP TABLE Coba;
To see the process of elimination table, let's create a table in advance. Write command :
CREATE TABLE Coba(field1 char(5),field2 integer(11));
We just create a new table with the name "Coba", to see the table we just created use the command :
SHOW TABLES;
Then delete the table "Coba" with the command :
DROP TABLE Coba;
No comments:
Post a Comment