Skip to content
Advertisement

How to declare the elements of an array non-nullable?

In the following simple table

It’s possible to insert null as an element of things:

But I’d like to not allow this.

Changing the definition to the following, however,

Only prevents this

which is not what I want. (I still want to allow that.)

So how can I declare not the column, but the elements of the array column to be non-nullable?

Advertisement

Answer

You can use a check constraint:

alternatively you can use array_position()

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement