【Postgresql】資料庫函數

來源:互聯網
上載者:User

標籤:

1.Postgresql查詢前幾條記錄的SQL語句

  select * from table where ...... LIMIT N  ;

 

2.SQL limit integer offset integer

:經常用到在資料庫中查詢中間幾條資料的需求。

比如下面的sql語句:

① select * from testtable limit 2,1;

② select * from testtable limit 2 offset 1;

這兩個都是能完成需要,但是他們之間是有區別的:

① 是從資料庫中第三條開始查詢,取一條資料,即第三條資料

② 是從資料庫中的第二條資料開始查詢兩條資料,即第二條和第三條。 

 

3.distinct icd01:查詢表中icd01值去重後的數目

select distinct icd01, icd02 from drug_icd a inner join rcp_icd10 d on a.icd=d.icd01 where cag<>‘‘;

 

4.split_part(text1,text2,integer):根據text2分割字串text1,從interger(從1開始)位置開始取到text2位置(不包括text2字元)的字串。

比如:取表ICD10中欄位icd01第一個小數點前的字元

 

(查詢結果)

SQL語句:select split_part(icd01,‘.‘,1) from icd10 ;

 

5.Coalesce(sum(value1),0):相當於SQL Server中的Isnull(num1,0),非空判斷

 

【Postgresql】資料庫函數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.