Jump to content

[SOLVED] What is the proper syntax for adding a new row into a table?


bobleny

Recommended Posts

It depends on what you mean...

 

If you want to add a new column, then...

 

ALTER TABLE table_name ADD column_name_to_add column_type_and_default_value_if_approbate;

 

example 1. (add a column)

 

ALTER TABLE users ADD auto_login tinyint(1) unsigned default '0' NOT NULL;

 

example 2. (add a column)

 

ALTER TABLE users ADD notes TEXT NOT NULL;

 

example 3. (change a column type, top_id)

 

ALTER TABLE topics CHANGE topic_id topic_id int(10) default '0' NOT NULL;

 

printf

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.