Re: Unable to find column

From: arun chirappurath <arunsnmimt(at)gmail(dot)com>
To: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: Unable to find column
Date: 2024-01-15 17:26:57
Message-ID: CAA23SdsdMaTT=M6EFGBmZQ6YaYy4kNuPuAUSborGwWdMtX-chQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Adrian,

\d shows the tables and this id which is a sequence.

Regards,
Arun

On Mon, 15 Jan 2024 at 22:03, Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
wrote:

> On 1/15/24 08:16, arun chirappurath wrote:
> > Dear all,
> >
> > I have a table automobile which has a column id.
> >
> > Table consists of id,make,year of manufacturing
> >
> > I use dbeaver for querying..
> >
> > Select * from automobile provides me results
> >
> > However select id from automobile yields column doesn't exists.
> >
> > I tried double quotes on id As well but same error.
> >
> > But if I drag and drop id or use the id which is auto prompted from
> > dbeaver,it works 💪.
> >
> > select "id" from automobile using drag and drop of id in dbeaver works.
> >
> > But if I manually type "id" it won't.
> >
> > Any clue on this.
>
> Do you have psql(https://www.postgresql.org/docs/current/app-psql.html(
> available?
>
> If so in psql what does:
>
> \d automobile
>
> return?
>
>
> >
> > Visually both statements are alike
> >
> >
> > Table is in public schema.
> >
> > Thanks,
> > Arun
> >
> >
> >
> >
>
> --
> Adrian Klaver
> adrian(dot)klaver(at)aklaver(dot)com
>
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sasmit Utkarsh 2024-01-15 17:32:14 Help needed for the resolution of memory leak
Previous Message Adrian Klaver 2024-01-15 16:33:44 Re: Unable to find column