Create, insert and drop a table : Delete Table « Table Index « SQL / MySQL






Create, insert and drop a table

  
CREATE TABLE t1 (
    c1 INT
);

INSERT INTO t1 VALUES (12);

SELECT * FROM t1;

DROP TABLE t1;

           
       








Related examples in the same category

1.How to delete a table
2.Remove two tables at the same time