问题标签 [column-alias]

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 投票
4 回答
8629 浏览

sql - 为什么我不能在下一个 SELECT 表达式中使用列别名?

我可以修改下一个以使用列别名avg_timecnt表达式ROUND(avg_time * cnt, 2)吗?

它引发了下一个错误:

然而,下一个工作正常(使用主表达式而不是列别名:

0 投票
2 回答
366 浏览

sql - Postgres SQL - 列不存在

错误:列“order_email”不存在

这个查询有什么问题?

0 投票
1 回答
222 浏览

sql - Postgres 9.4 的中位数 - 为什么我的代码不起作用?

试图找出从创建邀请到用户接受邀请之间的中间等待时间。此代码生成错误:

我该如何修复它?

0 投票
2 回答
33934 浏览

sql - PostgreSQL - 错误:列不存在 SQL 状态:42703

我正在尝试进行群组分析,并根据承租人的第一个租赁年份(= 承租人第一次租赁的年份)比较平均租金数量。基本上,我在问一个问题:我们是否保留了第一年租金是 2013 年的租户而不是第一年是 2015 年的租户?

这是我的代码:

我得到的错误信息是:

任何帮助深表感谢。

0 投票
4 回答
63 浏览

sql - Oracle 合并列出现错误

我在 oracle 中有 2 列,我正在合并如下

这工作正常。但是当我将自己的名字添加到下面的列中时

它给出了错误

ORA-00923: 在预期的地方找不到 FROM 关键字

0 投票
0 回答
848 浏览

hadoop - 如何在配置单元查询的后面部分使用列别名

有没有办法使用查询稍后声明的列别名?我有这样的东西

我尝试使用

但不起作用。

我知道我可以在 Teradata 中做到这一点,所以我希望在 Hive 中也必须有一些方法可以做到这一点。

谢谢,

马诺伊阿格拉瓦尔

0 投票
1 回答
85 浏览

mysql - 无法在 mysql 中使用“as”为列提供别名

询问:

查询给出了准确的结果,但无法将列重命名batchSenior_PM_Batch.

结果Batch仅显示列名。

0 投票
1 回答
40 浏览

mysql - 如何在 SELECT 子句中命名后立即使用列别名?

我在第 7 行创建了一个名为 total_city_pop 的列别名。

然后,在第 8 行,我尝试在新计算中使用该别名。

但是,我收到一条错误消息,上面写着“列“total_city_pop”不存在第 8 行:(ci.city_proper_pop + ci.metroarea_pop)/total_city_pop AS ... ^”

为什么我创建后不能使用别名?

这是代码——

谢谢你。

0 投票
1 回答
485 浏览

sql - 带有联合的别名表都不起作用

我在一个简单的查询中有 ora-00094(标识符无效),但我不明白为什么。请问你能帮帮我吗?

0 投票
2 回答
7942 浏览

sql - Using CASE on a Calculated Column in SQL Server 2012

I have a database called temp, with daily stock prices:

I have calculated a running total of the max price for each stock and the cumulative drawdown for each stock for each day: (max price - current price) / max price)

I now want to create another column called peak_cnt.

Peak_cnt will have a binary output: 1 if drawdown = 0 and 0 for anything else.

Here's what I want to produce:

Will CASE statement work here? I tried a few different versions of CASE but have not had any success. This is the farthest I've gotten with CASE:

Any suggestions on successfully using CASE or any other solution?