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;

           
       



Leave a Comment / Note


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

Follow Navioo On Twitter

SQL / MySQL

 Navioo Table Index
» Delete Table