Creating a Database
CREATE DATABASE howtos;\u howtos
CREATE TABLE chaos_howtos (
`chaos_id` int(11) NOT NULL auto_increment PRIMARY KEY,
`chaos_title` varchar(50) NOT NULL,
`chaos _content` text NOT NULL
);
ALTER TABLE chaos_howtos ADD column posted datetime NOT NULL ;
n ALTER TABLE chaos_howtos modify column posted datetime NOT NULL DEFAULT '0000-00-00 00:00:00';
ALTER TABLE chaos_ howtos DROP column posted;
ALTER TABLE chaos_howtos ADD column chaos_posted datetime NOT NULL DEFAULT '0000-00-00 00:00:00';