Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6808671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:59:05+00:00 2026-05-26T19:59:05+00:00

I have some columns in PostgreSQL database that are array. I want to add

  • 0

I have some columns in PostgreSQL database that are array. I want to add a new value (in UPDATE) in it if the value don’t exists, otherwise, don’t add anytihing. I don’t want to overwrite the current value of the array, but only add the element to it.

Is possible do this in a query or I need to do this inside a function? I’m using PostgreSQL.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T19:59:06+00:00Added an answer on May 26, 2026 at 7:59 pm

    This should be as simple as this example for an integer array (integer[]):

    UPDATE tbl SET col = col || 5
    WHERE  (5 = ANY(col)) IS NOT TRUE;
    

    A WHERE clause like:

    WHERE  5 <> ALL(col)
    

    would also catch the case of an empty array '{}'::int[], but fail if a NULL value appears as element of the array.

    If your arrays never contain NULL as element, consider actual array operators, possibly supported by a GIN index.

    UPDATE tbl SET col = col || 5
    WHERE  NOT col @> '{5}';
    

    See:

    • Check if value exists in Postgres array
    • Can PostgreSQL index array columns?
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have one database, and it contains some columns. My requirement is that how
We have some columns with data that must always be in uppercase to ensure
I've got some Columns in a DataGridView that have their Binding property set to
I have a table that, some of its columns are unknown at compile time.
I have a PostgreSQL\PostGIS spatial database which contains Hebrew text columns. The system runs
I have a postgres database with a table that contains rows I want to
I'm helping implement a SQL Server 2008 database and I have several columns that
I have some data I am querying. The table is composed of two columns
Lets say I have one row with three columns - some buttons on left
I have a Silverlight app with a DataGrid containing some custom columns and all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.