您好,登錄后才能下訂單哦!
這篇文章主要介紹PostgreSQL數組添加元素的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
PostgreSQL數組怎么添加元素
1、首先是插入數組數據,有兩種方式
推薦:PostgreSQL教程
# 方式1 postgres=# insert into t_kenyon(items) values('{1,2}'); INSERT 0 1 postgres=# insert into t_kenyon(items) values('{3,4,5}'); INSERT 0 1 # 方式2 postgres=# insert into t_kenyon(items) values(array[6,7,8,9]); INSERT 0 1 postgres=# select * from t_kenyon;id | items ----+----------- 1 | {1,2} 2 | {3,4,5} 3 | {6,7,8,9} (3 rows)
2、數據刪除
postgres=# delete from t_kenyon where id = 3; DELETE 1 postgres=# delete from t_kenyon where items[1] = 4; DELETE 0 postgres=# delete from t_kenyon where items[1] = 3; DELETE 1
3、數據更新(往數組內添加元素)
# 往后追加 postgres=# update t_kenyon set items = items||7; UPDATE 1 postgres=# select * from t_kenyon;id | items ----+--------- 1 | {1,2,7} (1 row) postgres=# update t_kenyon set items = items||'{99,66}'; UPDATE 1 postgres=# select * from t_kenyon; id | items ----+------------------ 1 | {1,2,7,55,99,66} (1 row) # 往前插 postgres=# update t_kenyon set items = array_prepend(55,items) ; UPDATE 1 postgres=# select * from t_kenyon; id | items ----+--------------------- 1 | {55,1,2,7,55,99,66} (1 row)
以上是PostgreSQL數組添加元素的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。