如何在postgres里使用比较级

2026-02-15 08:57:15

1、sudo su postgres

psql

进入postgres。

如何在postgres里使用比较级

如何在postgres里使用比较级

2、SELECT 2 > 1;

返回的t表示真。

如何在postgres里使用比较级

3、SELECT 2 < 1;

返回的f表示假。

如何在postgres里使用比较级

4、还可以用<=或者>=也是可以比较的。

如何在postgres里使用比较级

如何在postgres里使用比较级

5、<>这个符号标识不等于。

如何在postgres里使用比较级

如何在postgres里使用比较级

6、=就是表示等于号,和数学里的一样。

如何在postgres里使用比较级

猜你喜欢