Inserindo dados em uma nova coluna de uma tabela já existente no MySQL?
Vamos primeiro criar uma tabela:
mysql> create table DemoTable(
Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
Name varchar(100)
);
Query OK, 0 rows affected (0.47 sec)
Insira alguns registros na tabela usando o comando insert:
mysql> insert into DemoTable(Name) values('John');
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable(Name) values('Bob');
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable(Name) values('Adam');
Query OK, 1 row affected (0.28 sec)
Exiba todos os registros da tabela usando a instrução select:
mysql> select *from DemoTable;
Isso produzirá a seguinte saída:
+----+------+
| Id | Name |
+----+------+
| 1 | John |
| 2 | Bob |
| 3 | Adam |
+----+------+
3 rows in set (0.00 sec)
Aqui está a consulta para adicionar coluna:
mysql> alter table DemoTable add column Gender ENUM('MALE','FEMALE');
Query OK, 0 rows affected (0.55 sec)
Records :0 Duplicates : 0 Warnings : 0
A seguir está a consulta para inserir dados em uma nova coluna de uma tabela já existente:
mysql> update DemoTable set Gender='FEMALE' where Id=2;
Query OK, 1 row affected (0.13 sec)
Rows matched − 1 Changed − 1 Warnings − 0
Vamos verificar os registros da tabela mais uma vez:
mysql> select *from DemoTable;
Isso produzirá a seguinte saída:
+----+------+--------+
| Id | Name | Gender |
+----+------+--------+
| 1 | John | NULL |
| 2 | Bob | FEMALE |
| 3 | Adam | NULL |
+----+------+--------+
3 rows in set (0.00 sec)