postgreSql 使用筆記

Haiyoung發表於2018-10-24

postgreSql

postgreSql 自增主鍵計數器重置

select setval('table_name_seq',max_num+1,false);

postgreSql資料庫中 表的自增主鍵對映 JPA

@Id  
@GeneratedValue(strategy = GenerationType.IDENTITY)  
private Integer id;  

postgresql資料庫json欄位查詢

select x.variable::json->>'imageId' as imageId, x.status, y.image_name 
from task x join image y on x.variable::json->>'imageId' = y.image_id
where x.variable::json->>'imageId' is not null and x.status is not null and y.is_valid is true;

postgresql多表聯合批量更新

update table_p as p 
set p_name = a.name,p_user = a.user_id,p_type = 'P02'
from (
select x.user_id,x.name,x.p_id from table_u x
join table_p y on x.p_id = y.p_id
) as a where p.p_id = a.p_id;

postgreSQL分頁查詢SQL

select * from table_name limit pagesize offset offsetNum ;  
-- 一般情況下: 
-- pagesize是固定的,即每頁顯示多少記錄,而offsetNum則是需要我們去計算的。  
-- offsetNum=(當前頁數-1)*pagesize (如果是第一頁,假設每頁顯示10條資料,則是(1-1)*10,第二頁則是(2-1)*10)  

檢視postgresql當前連線

select * from pg_stat_activity;
-- 查詢出來的資訊中,只有當前查詢使用者的連線的詳細資訊

相關文章