问题标签 [quoted-identifier]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
781 浏览

postgresql - 在 Google Data Studio 上,使用 PostgreSQL 数据,除了 camelCase 列,我如何“选择 * ...”?

在 Google Data Studio 上,如果表列采用驼峰式格式,我无法从 Postgres 数据创建图表。我在 PostgreSQL 中有数据,我想从中获取图表。将其集成为数据源可以正常工作。现在,我在创建图表时遇到了问题。

创建图表并选择数据源后,我尝试添加一列,结果出现此错误:

碰巧我所有的专栏都是骆驼式的。有没有办法解决这个问题?当然,这是一个已经解决的基本问题。

0 投票
0 回答
210 浏览

postgresql - Postgres:关系不存在错误,Postgres

您好我试图在 tUser 表上插入后创建触发器。

我做了我的触发功能,它连接了。

现在我收到一条错误消息:关系“tAuditUser”的列“cnewusername”不存在。现在这是我的 tAuditUser 表的第一个值,所以我猜这个问题将在整个值中继续存在。

这是我的代码:

我添加的用户具有以下值:

注意:我的用户已添加到数据库中

0 投票
0 回答
577 浏览

postgresql - 在使用 camelCase 定义的数据库中时,PostgreSQL“列不存在”

我对 Postgres 有一个有趣的情况(类似于PostgreSQL“列不存在”,但它确实存在)。即列或表名包含大写字母。在上面的给定链接中,它是关于表名的。

就我而言,在数据库中,我在 camelCase 中定义了一个列“projectId”(数据库中的 SQL 看起来像“..“projectId”整数 NOT NULL,..')。在后端我使用 Java 和 Hibernate。当我尝试使用命名查询(例如“SELECT e FROM ProjectTa e”)获取表的所有条目时,我收到错误消息:

SQL 日志:

'FROM "Tablename" ' 将解决表名问题。如果我只想要表的所有条目,我必须如何调整我的命名查询。(我不想在我的实体中更改列名或使用 @Column 的名称)

0 投票
1 回答
38 浏览

postgresql - postgres error: column doesn't exist error in Postgesql 11.6

I am trying to run an update command on postgresql 11.6 by below syntax

I am getting this below error

LINE 1: ... set "YP_SUPPLIERS.supplierName" = "update" where "YP_SUPPLI...

tired different combinations by only giving the column name , removing the quotes but nothing seems to be working.

Could any one suggest me a right way to do it.

0 投票
1 回答
26 浏览

postgresql - 创建一个带有括号的列名的表

我尝试使用 postgresql 查询创建一个表:

但它给出了一条错误消息:

可能问题来自括号,我已经尝试过

但它也给了我类似的错误信息。

如何更正查询?我真的需要使用括号。

0 投票
0 回答
133 浏览

postgresql - postgres 表中的 createdAt 在 SELECT 中变为“不存在”

在 nodejs 应用程序中,创建了一个 pq 11 数据库。我注意到即使该字段列在以下位置,createdAt也无法通过 SQL 进行选择:do not existpgadmin v4

在此处输入图像描述

Tag表是使用 sequelize 6.3 创建的,代码如下:

据我所知,该表正在工作,并且数据库没有更改。createdAt and updatedAt其他表也存在同样的问题。这里有什么问题?

0 投票
1 回答
1599 浏览

postgresql - Postgres: column does not exist

I have been trying to migrate my databases from MySql to Postgres but I've encountered a big issue that I can't seem to find how to fix.

I have a row inserted into the table called "users" and that table has Columns such as UserID, Username, etc. as seen here: enter image description here

Now In my C# Code that is accessing the Database and grabbing the data, Im sending this query to the database:

Which I tried, but that only resulted in me not getting any rows out of that query as shown here: enter image description here

I tried querying it without those quotes around the Column name but that only resulted in me getting the

Which one of my friends hinted to happens because Postgres makes everything outside of quotes lowercase, but then we're back to the other issue.

Im new to Postgres and I'm trying to learn this but this is a hard wall that I can't seem to fix myself.

Thanks in advance!

0 投票
0 回答
254 浏览

sql - 删除约束 - 关系不存在

我正在尝试使用 Postbird 接口或以下 SQL 删除表约束:

两种方式,错误是:关系“设备”的约束“fk_473c90a9cf5f18226886e62a3b3”不存在

表结构 在此处输入图像描述

information_schema.table_constraints 在此处输入图像描述

任何想法?

0 投票
1 回答
2822 浏览

postgresql - 当我已经遵循格式时,为什么我不能删除 Postgresql-Pgadmin 中的一行?

我有一个Department有 2 列的表,DEPT_CODEPKDEPT_NAME并且两者都有数据类型name。我插入:

然后我想删除它,所以我写道:

这并没有删除该行(我使用了 pgadmin 提供的删除脚本)。如果我不使用引号'DEPT_CODE',它给出了一个错误:

不知道该怎么办。我看到的每个教程似乎都可以删除,为什么不是我的?这是我第一次使用 pgadmin-postgres。

0 投票
1 回答
114 浏览

sql - Postgres 解决由破折号 (-) 引起的语法错误

我正在尝试从名为physionet-data.mimiciii_clinical.diagnoses_icd

PostgresSQL 返回以下错误消息:

我认为这是由破折号引起的。如果我更改“for”,则会出现相同的错误

关于如何解决这个问题的任何线索?