gpt4 book ai didi

postgresql - X 列不存在。 (按功能创建列)

转载 作者:行者123 更新时间:2023-11-29 11:49:42 25 4
gpt4 key购买 nike

<分区>

我使用的是 PostgreSQL 9.5.3,我正在尝试选择所有年龄超过 20 岁的用户。我构建了一个显示错误的 SQLFiddle:

http://sqlfiddle.com/#!15/5cd52/3

片段:

架构:

CREATE TABLE users (
name text,
birthdate bigint
);

INSERT INTO users values('Chris', 774532800000);

SQL:

SELECT u.*, age(TO_TIMESTAMP(u.birthdate / 1000)) as age from users u
WHERE age > 20

错误:

ERROR: column "age" does not exist Position: 77

我将相差 1000 的原因是因为我的日期都是使用 毫秒 存储的,因为这是 Firebase 的默认值。这个 postgreSQL 数据库用于处理 Firebase 无法处理的更复杂的查询。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com