Sachin Srivastava schrieb am 20.01.2016 um 12:42: > How to handle this below situation, I am getting error for function, my > Postgres version is 9.4 > is > > ERROR: syntax error at or near "@" > LINE 67: autonumbersett...@repos.birchstreet.net > <mailto:autonumbersett...@repos.birchstreet.net> > ^ > ********** Error ********** > ERROR: syntax error at or near "@" > SQL state: 42601 > Character: 3274 >
Well, autonumbersett...@repos.birchstreet.net is an invalid identifier. A "@" is not allowed as part of a table name. You need to enclose that in double quotes: SELECT ... FROM "autonumbersett...@repos.birchstreet.net" -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general