JK Web Studio

Specializing in efficient and user friendly web design solutions

info@jkwebstudio.com

Create new MySQL table

CREATE TABLE new_table (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
bool_field tinyint(1) DEFAULT 0,
my_date datetime DEFAULT NULL
);

Leave a Reply