PostgreSQL數據類型-數據類型簡介和布爾類型

PostgreSQL相對於其餘數據庫,支持數據類型不少。sql

PostgreSQL數據類型有布爾類型、整數類型、字符串類型、二進制字符串類型、位串類型、時間與日期類型、枚舉類型、幾何類型、網絡地址類型、數組類型、複合類型、XML類型、json類型、range類型、對象標識符類型、僞類型和其餘類型。數據庫

爲提升SQL語句兼容性,部分數據類型還有別名,例如integer類型,能夠用int、int4表示,smallint類型能夠用int2表示等。具體狀況見下圖json

postgresql數據類型

數據輸入和轉換

簡單數據能夠直接查詢輸出。複雜類型能夠用類型名加單引號進行輸入。數組

postgres=# select 1 AS "1",1.414 AS "Sqrt(2)!=!",'Hello,Tom';
 1 | Sqrt(2)!=! | ?column?
---+------------+-----------
 1 |      1.414 | Hello,Tom
(1 行記錄)

#查詢複雜類型
postgres=#

postgres=# select smallint '777';
 int2
------
  777
(1 行記錄)

postgres=#
postgres=#
postgres=# select int '777';
 int4
------
  777
(1 行記錄)

postgres=#

postgres=# select int '777' + smallint '666';
 ?column?
----------
     1443
(1 行記錄)

postgres=#

PostgreSQL支持標準SQL類型轉換函數CAST進行數據類型轉換。也能夠使用雙冒號進行轉換。網絡

postgres=# select cast('2017' as int ),cast('2015-1-1' as date);
 int4 |    date
------+------------
 2017 | 2015-01-01
(1 行記錄)

#雙冒號轉換
postgres=# select '777'::int,'2015-1-1'::date;
 int4 |    date
------+------------
  777 | 2015-01-01
(1 行記錄)

postgres=#
#單引號能夠省略
postgres=# select '0'::boolean,'0'::int;
 bool | int4
------+------
 f    |    0
(1 行記錄)

postgres=#

Boolean類型(布爾類型)

布爾類型只有兩種狀態,分別是true(真)和false(假)。函數

建立布爾類型測試表並插入數據。post

postgres=# create table testbool(id int,status boolean);
CREATE TABLE
postgres=#
postgres=# insert into testbool values(1,True),(1,True),(2,'True'),(3,'true'),(4,'0'),(5,'1'),(6,'t'),(7,'f');
INSERT 0 5
postgres=#
#查詢結果爲t或f。
postgres=# select * from testbool;
 id | status
----+--------
  1 | t
  1 | t
  2 | t
  3 | t
  4 | f
  5 | t
  6 | t
  7 | f
(8 行記錄)

postgres=#

根據查詢結果可知,布爾類型能夠用帶或者不帶單引號不區分大小寫true或false表示;0或1,t或f須要加單引號,0表示false,1表示true。測試

布爾類型可用操做符有邏輯運算符和比較運算符。postgresql

經常使用邏輯操做符有and、or和not。code

SQL使用三個值,分別是true,false和null。null表明空值(什麼都沒有,不是0,也不是空格)。邏輯與和邏輯或運算先後兩個操做對象位置能夠互換,不影響運算結果。例如true and false 和false and true 查詢結果相同。

不含null,2個值所有爲真邏輯與運算結果爲真,其餘爲假。

不含null,2個值所有爲假邏輯或運算結果爲假,其餘爲真。

true和null邏輯與運算結果爲空,邏輯或運算結果爲true。 false和null邏輯或運算結果爲false,邏輯或運算結果爲null。

兩個空值邏輯或和邏輯與運算結果爲null。

邏輯非運算也就是取反,非真爲假,非假爲真。下面看演示查詢代碼。

#bool數據類型練習
postgres=# select true and true,true and false,false and false;
 ?column? | ?column? | ?column?
----------+----------+----------
 t        | f        | f
(1 行記錄)

postgres=# select true or true,true or false,false or false;
 ?column? | ?column? | ?column?
----------+----------+----------
 t        | t        | f
(1 行記錄)

postgres=# select false and true,false or true;
 ?column? | ?column?
----------+----------
 f        | t
(1 行記錄)

postgres=#

postgres=# select true and true,true and false,false and false;
 ?column? | ?column? | ?column?
----------+----------+----------
 t        | f        | f
(1 行記錄)

postgres=# select true or true,true or false,false or false;
 ?column? | ?column? | ?column?
----------+----------+----------
 t        | t        | f
(1 行記錄)

postgres=# select false and true,false or true;
 ?column? | ?column?
----------+----------
 f        | t
(1 行記錄)

postgres=# select true and null,true or null;
 ?column? | ?column?
----------+----------
          | t
(1 行記錄)

postgres=# select false and null,false or null;
 ?column? | ?column?
----------+----------
 f        |
(1 行記錄)

postgres=# select true and null,false and null;
 ?column? | ?column?
----------+----------
          | f
(1 行記錄)

postgres=# select not null;
 ?column?
----------

(1 行記錄)

postgres=#
相關文章
相關標籤/搜索