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.
|
|
|
|
|
|
|
For MySQL:
|
||||
|
|
|
That would be the SQL syntax:
In your case, you'd be looking at:
|
||
|
|