Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

내 MySQL 제품 테이블에서 제품의 총 가치를 계산하려면 어떻게 해야 합니까?

<시간/>

먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
   (
   ProductId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   ProductQuantity int,
   ProductPrice int
   );
Query OK, 0 rows affected (0.19 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable(ProductQuantity,ProductPrice) values(10,100);
Query OK, 1 row affected (0.06 sec)

mysql> insert into DemoTable(ProductQuantity,ProductPrice) values(5,11);
Query OK, 1 row affected (0.04 sec)

mysql> insert into DemoTable(ProductQuantity,ProductPrice) values(3,140);
Query OK, 1 row affected (0.05 sec)

mysql> insert into DemoTable(ProductQuantity,ProductPrice) values(2,450);
Query OK, 1 row affected (0.15 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable;

이것은 다음과 같은 출력을 생성합니다 -

+-----------+-----------------+--------------+
| ProductId | ProductQuantity | ProductPrice |
+-----------+-----------------+--------------+
| 1         | 10              | 100          |
| 2         | 5               | 11           |
| 3         | 3               | 140          |
| 4         | 2               | 450          |
+-----------+-----------------+--------------+
4 rows in set (0.00 sec)

다음은 제품의 총 가치를 계산하는 쿼리입니다 -

mysql> select sum(ProductQuantity*ProductPrice) as Total_of_Products from DemoTable;

이것은 다음과 같은 출력을 생성합니다 -

+-------------------+
| Total_of_Products |
+-------------------+
| 2375              |
+-------------------+
1 row in set (0.00 sec)