PostgreSQL查詢帶有 符號的sql

2021-07-02 07:02:39 字數 327 閱讀 7353

第一次使用sql語句查詢帶有_符號的內容時:

select a.* from attribute a where a.name = 'server.other.hostname' and a.value like '%_%'

發現查詢的結果是全部的結果,與預期的結果不同,後來發現like語句中_符號是代表任意字元的意思,可使用scape關鍵字進行查詢:

select a.* from attribute a where a.name = 'server.other.hostname' and a.value like '%|_%' escape '|'

這次得到的結果就是正確的

Postgresql查詢出換行符和回車符

1 有時候,業務因為回車和換行出現的錯誤,第一步,首先要查詢出回車符和換行符那一條資料 使用chr 13 和chr 10 進行查詢 select from 資料表名稱 where 字段 like chr 13 or 字段 like chr 10 其實查詢chr 13 和chr 10 都可以將資料查詢...

postgresql分頁查詢

資料庫中存了3000w條資料,兩種分頁查詢測試時間 第一種select from test table where i id 1000 limit 100 time 0.016s 第二種select from test table limit 100 offset 1000 time 0.003s ...

PostgreSQL實用查詢SQL

參考 postgresql實用查詢sql 檢視 資料庫 www.2cto.com select from pg database 檢視表空間 select from pg tablespace 檢視語言 select from pg language 檢視角色使用者 select from pg u...