Re: Cannot drop column

From: Rich Shepard <rshepard(at)appl-ecosys(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Cannot drop column
Date: 2024-12-18 19:09:05
Message-ID: fea295b6-2059-7fd4-cc62-3690eadd96b@appl-ecosys.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, 18 Dec 2024, Rich Shepard wrote:

>> Since your column name has an Upper case character, you will have to use
>> double quotes to drop it. Try alter table statustypes drop column
>> "Suspect";

> Thanks for the lesson.

But,

bustrac=# alter table statustypes drop column "Suspect";
ERROR: column "Suspect" of relation "statustypes" does not exist
bustrac=#

Double quoting didn't resolve the issue.

Rich

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message David G. Johnston 2024-12-18 19:09:46 Re: Cannot drop column
Previous Message Rich Shepard 2024-12-18 19:05:31 Re: Cannot drop column