create an empty table in sql code example
Example 1: create table sql
CREATE TABLE vehicle(
vehicleId INT NOT NULL,
make VARCHAR(64),
model VARCHAR(128),
derivative VARCHAR(255),
PRIMARY KEY(vehicleId)
);
INSERT INTO vehicle VALUES(1000,'Volkswagen','Golf','1.5 TSI EVO Match Edition 5dr');
Example 2: create table sql
CREATE TABLE table_name(
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
longtext BLOB
);
Example 3: empty an sql table
TRUNCATE TABLE table_name;
Example 4: sql empty table
TRUNCATE TABLE my_table;
DELETE FROM my_table;
COMMIT;