You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE people (
id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
name VARCHAR(20) ,
age INT(3),
create_time DATETIME,
PRIMARY KEY (id)
)ENGINE=InnoDB DEFAULT CHARSET=UTF8 ;