create database myfirstDB; use myfirstDB; create table news (dbKey bigint(20) unsigned NOT NULL auto_increment, title varchar(50), content varchar(500), date timestamp, primary Key(dbKey)); insert into news (title,content,date) values ('jdwang first book','Hi! Nice to meet you.','2012/11/11');