Create, insert and drop a table : Delete Table « Table Index « SQL / MySQL
- SQL / MySQL
- Table Index
- Delete Table
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