如何在postgres里做算术运算

2024-10-31 10:57:24

1、sudo su postgres进入postgres。

如何在postgres里做算术运算如何在postgres里做算术运算

2、\l\c test切换到test数据库。

如何在postgres里做算术运算

3、SELECT 11 + 11;SELECT 20 - 18;可以进行加减法。

如何在postgres里做算术运算如何在postgres里做算术运算

4、SELECT 8 * 2;SELECT 19 / 2;还可以进行乘除法。

如何在postgres里做算术运算如何在postgres里做算术运算

5、SELECT 2 ^ 4;这里是平方数。

如何在postgres里做算术运算

6、SELECT 18 % 3;这里可以求出余数。

如何在postgres里做算术运算

7、我们还可以在提取数据的时候进行运算。

如何在postgres里做算术运算如何在postgres里做算术运算
猜你喜欢