Hey guys,
I do apologise if this is in the wrong place on the forum, wasn't sure where to put it.
what i would liek to know is, how can i add more fields to a table that has already been created via the MySQL console.
Cheers.
:)
Printable View
Hey guys,
I do apologise if this is in the wrong place on the forum, wasn't sure where to put it.
what i would liek to know is, how can i add more fields to a table that has already been created via the MySQL console.
Cheers.
:)
You need to use ALTER. Eg
Heres the link for ALTER in the MySQL manualCode:ALTER TABLE t2 ADD d TIMESTAMP;
http://dev.mysql.com/doc/mysql/en/alter-table.html
oh thats how you do it.
Thanks. Much appreciated.