agora inbox for pgsql-sql@postgresql.org
help / color / mirror / Atom feedFrom: Sebastien FLAESCH <sf@4js.com>
To: pgsql-sql@lists.postgresql.org <pgsql-sql@lists.postgresql.org>
Subject: Serial sequence name when table/column name in uppercase
Date: Wed, 31 Mar 2021 10:35:29 +0200
Message-ID: <cc5742f1-7b3f-5051-e033-e99ff69245e7@4js.com> (raw)
Hello,
How do I get the sequence name for a serial/bigserial column, of a table
and/or column name is created with uppercase letters?
test1=> create table "TAB13" ( "PKEY" BIGSERIAL, "NAME" VARCHAR(50) );
CREATE TABLE
test1=> select pg_get_serial_sequence(current_schema||'.tab13','pkey');
ERROR: relation "public.tab13" does not exist
test1=> select pg_get_serial_sequence(current_schema||'.TAB13','PKEY');
ERROR: relation "public.tab13" does not exist
test1=> select * from "TAB13";
PKEY | NAME
------+------
(0 rows)
Seb
view thread (7+ messages) latest in thread
Message-ID: <cc5742f1-7b3f-5051-e033-e99ff69245e7@4js.com>
Permalink: ../cc5742f1-7b3f-5051-e033-e99ff69245e7@4js.com/
Also on: postgresql.org/message-id/cc5742f1-7b3f-5051-e033-e99ff69245e7@4js.com
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: pgsql-sql@postgresql.org
Cc: sf@4js.com, pgsql-sql@lists.postgresql.org
Subject: Re: Serial sequence name when table/column name in uppercase
In-Reply-To: <cc5742f1-7b3f-5051-e033-e99ff69245e7@4js.com>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox