postgreSQL資料庫limit分頁 排序

2021-07-05 07:33:47 字數 736 閱讀 5907

postgresql資料庫limit分頁、排序

語法:select * from persons limit  a  offset  b;

解釋:a就是你需要多少行;

b就是查詢的起點位置。

示例:select * from persons limit 5 offset 0 ;

意思是,起點0開始查詢,返回5條資料。

意思是,起點5開始查詢,返回5條資料。

特殊:

select * from persons limit 5 ;

這個就類似:

select * from persons limit 5 offset 0;

也就是,從起點0開始查詢,返回5條資料。

按規則排序,同時也要分頁:

select * from persons

order bylastname

limit5 offset 0;

**:

postgresql模板資料庫

template0和template1為postgresql資料庫的模板資料庫,新建的資料庫預設使用template1作為模板。template0和template1的區別在於template0無法修改,因此你可以修改template1資料庫以定製新建立的資料庫。template資料庫無法被刪除 d...

postgresql資料庫安裝

安裝並初始化 1 解壓資料庫並放到指定目錄 在opt目錄下 tar xvzf postgresql 10.1 1 linux x64 binaries.tar.gz 解壓出來之後目錄為pgsql 2 mv pgsql usr local pgsql 3 建立pgsql使用者並設定密碼 useradd...

資料庫 postgresql 安裝

當前專案是使用django框架搭建介面層的業務,資料庫端使用了postgresql,這裡只是簡單記錄下自己的安裝流程,因為開發機器使用的mac,所以流程只是針對mac。這裡我使用的homebrew,這個工具就不多說了,沒有用過的可以到這裡 執行下面命令即可 brew install postgres...