Alter table users
Add
{
};
and if so how would i add all three of these columns
`user_id` varchar(16) DEFAULT NULL,
`user_location` tinytext,
`author_id` varchar(16) DEFAULT NULL,
and if so how would i add all three of these columns
| |||||||||
feedback
|
|
To be honest, you're not really doing yourself any favours by asking such as question, as you won't learn anything from an actual answer. (i.e.: Someone telling you the correct syntax won't help you learn.) As such, what you should do is:
By doing this, you'll learn as you go which is a lot more valuable in the long run. | ||||
|
feedback
|
| |||
|
feedback
|
So can't you just separate each one of the parameters with comma.
Source: http://dev.mysql.com/doc/refman/5.5/en/alter-table.html | ||||
feedback
|