vote up 0 vote down star

How to add a column to the table:

create table table1 (id integer primary key, field1 text)

? The column would be field2 text and the value for existing rows in this column should be value.

flag

80% accept rate

2 Answers

vote up 1 vote down check

For MySQL:

ALTER TABLE table1 ADD field2 text;
UPDATE table1 SET field2='value';
link|flag
Why not to use: alter table table 1 add field2 text default 'value' – Bogdan Gusiev May 31 at 7:52
Because he did not specify that he always wanted the value to be 'value'. He just said "existing rows"... – gahooa Jun 1 at 18:57
vote up 1 vote down

That would be the SQL syntax:

ALTER TABLE table_name ADD column_name datatype

In your case, you'd be looking at:

alter table table1 add field2 text
update table1 set field2 = 'value'
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.