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筆記
- 筆記:Node.js Postgresql踩坑筆記Node.jsSQL
- 【讀書筆記】Postgresql清理過程筆記SQL
- 筆記:PostgreSQL 、Node.js 、函式計算筆記SQLNode.js函式
- wcdb使用筆記筆記
- UOS使用筆記筆記
- axios使用筆記iOS筆記
- Deepin使用筆記筆記
- springcloud使用筆記SpringGCCloud筆記
- easySQLite使用筆記SQLite筆記
- Git使用筆記Git筆記
- GoJS 使用筆記GoJS筆記
- TeeReader使用筆記筆記
- Markdown使用筆記筆記
- 【Linux】使用筆記Linux筆記
- 社群使用筆記筆記
- docker使用筆記Docker筆記
- vue - 使用筆記Vue筆記
- 【讀書筆記】Postgresql連線方法及執行器筆記SQL
- AIDL的使用筆記AI筆記
- Delphi TMSMQTT使用筆記MQQT筆記
- 【SHELL】命令使用筆記筆記
- oneinstack 使用快捷筆記筆記
- git的使用筆記Git筆記
- CGO Swig 使用筆記Go筆記
- ScottPlot的使用筆記筆記
- [工具]Pandoc 使用筆記筆記
- vCenter Server使用筆記Server筆記
- Docker的使用筆記Docker筆記
- QT creator使用筆記QT筆記
- 社群使用筆記2筆記
- 筆記:Vue 使用pug + ts筆記Vue
- 【前端筆記】Vuex快速使用前端筆記Vue
- [以太坊] OpenZeppelin 使用筆記筆記
- linux下vi使用筆記Linux筆記