SQL命令更新/增加

问题描述 投票:0回答:2

我这里有一张表,我刚刚为问题目的而快速创建了一个表。

在SQL上如何将DVD的成本提高20%?

另外,当我在SQL上创建表时,我使用哪种数据类型,当我尝试创建表时,它不能完全显示成本,例如它只显示1.2(DVD)或.5(cd)。

谢谢!

sql sql-update command
2个回答
2
投票

你使用update

update t
    set price = price * 1.2
    where name = 'DVD';

如果您希望价格显示所有小数点,则将该列声明为数字,如numeric(10, 2)


0
投票

你会如何手动增加20%的成本?你将它乘以1.2:

update your_table set cost = cost * 1.2 where name = 'DVD';

数据类型应为NUMBER。它是以所需的方式显示这些值,即一个十进制字符,两个等。使用TO_CHAR函数和适当的格式掩码。例如:

SQL> create table test (col number);

Table created.

SQL> insert into test values (0.5);

1 row created.

SQL> insert into test values (2.35);

1 row created.

SQL> insert into test values (102.003);

1 row created.

SQL> select col, to_char(col, '990D0') r1,
  2              to_char(col, '990D000') r2
  3  from test;

       COL R1     R2
---------- ------ --------
        ,5    0,5    0,500
      2,35    2,4    2,350
   102,003  102,0  102,003

SQL>
© www.soinside.com 2019 - 2024. All rights reserved.