Remove array values in pgSQL

后端 未结 10 2416
不知归路
不知归路 2021-02-06 22:10

Is there a way to remove a value from an array in pgSQL? Or to be more precise, to pop the last value? Judging by this list the answer seems to be no. I can get the result I wan

10条回答
  •  感动是毒
    2021-02-06 22:35

    In version 9.3 and above you can do:

    update users set flags = array_remove(flags, 'active')
    

提交回复
热议问题