在 MySQL 中向表格添加新列并用相同表格中的其他两列的数据填充它?
我们首先创建一个表 −
mysql> create table DemoTable ( Price int, Quantity int ); Query OK, 0 rows affected (0.71 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values(45,3); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values(90,2); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(440,1); Query OK, 1 row affected (0.09 sec)
使用 select 语句在表中显示所有记录 −
mysql> select *from DemoTable;
这将产生以下输出 −
+-------+----------+ | Price | Quantity | +-------+----------+ | 45 | 3 | | 90 | 2 | | 440 | 1 | +-------+----------+ 3 rows in set (0.00 sec)
以下是添加新列到表并用 2 个其他列的数据填充的查询。在这里,我们添加了新列 TotalAmount,它中的数据是前两列中的值相乘 −
mysql> select Price,Quantity, Price*Quantity AS TotalAmount from DemoTable;
这将产生以下输出 −
+-------+----------+-------------+ | Price | Quantity | TotalAmount | +-------+----------+-------------+ | 45 | 3 | 135 | | 90 | 2 | 180 | | 440 | 1 | 440 | +-------+----------+-------------+ 3 rows in set (0.00 sec)
广告