postgreSql 使用筆記
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;
-- 查詢出來的資訊中,只有當前查詢使用者的連線的詳細資訊
相關文章
- PostgreSQL筆記SQL筆記
- postgresql 筆記SQL筆記
- Postgresql學習筆記SQL筆記
- 筆記:如何使用postgresql做順序扣減庫存筆記SQL
- 【PostgreSQL】入門學習筆記SQL筆記
- 筆記:Node.js Postgresql踩坑筆記Node.jsSQL
- 【讀書筆記】Postgresql清理過程筆記SQL
- 筆記:PostgreSQL 、Node.js 、函式計算筆記SQLNode.js函式
- Markdown使用筆記筆記
- docker使用筆記Docker筆記
- wcdb使用筆記筆記
- vue - 使用筆記Vue筆記
- 社群使用筆記筆記
- vim使用筆記筆記
- Tmux 使用筆記UX筆記
- MarkDown 使用筆記筆記
- webpack使用筆記Web筆記
- NSDate使用筆記筆記
- maven使用筆記Maven筆記
- node 使用筆記筆記
- Perforce 使用筆記筆記
- sublime使用筆記筆記
- 《mockito 使用筆記》Mockito筆記
- Brio使用筆記。筆記
- UOS使用筆記筆記
- easySQLite使用筆記SQLite筆記
- Git使用筆記Git筆記
- 【讀書筆記】Postgresql連線方法及執行器筆記SQL
- PostgreSQL小記SQL
- axios使用筆記iOS筆記
- git的使用筆記Git筆記
- [工具]Pandoc 使用筆記筆記
- Docker的使用筆記Docker筆記
- 社群使用筆記2筆記
- TeeReader使用筆記筆記
- vCenter Server使用筆記Server筆記
- GoJS 使用筆記GoJS筆記
- 【Linux】使用筆記Linux筆記