I am using postgreSQL. I have a column that:
NOT NULL
However when I want to insert a row with an empty string as like:
''
it doesn't give me an error and accepts. How can I check insert value should be not empty
? (Neither empty nor null)
PS: My column defined as:
"ads" character varying(60) NOT NULL