在node-postgres

时间:2015-08-24 15:28:38

标签: node.js postgresql node-postgres

我目前正在使用node-postgres来查询我的数据库,如下所示:

SELECT DISTINCT(name) FROM users.names ORDER BY name;

我想返回这些名称的小写字母,所以我试过这个:

SELECT DISTINCT(lower(name)) FROM users.names ORDER BY lower(name);

...但这只会返回null来代替每个名字。

1 个答案:

答案 0 :(得分:0)

这解决了它:

SELECT DISTINCT(LOWER(tag)) AS tag FROM support.tags ORDER BY LOWER(tag);

密钥添加显然是AS tag,否则'标记'字段被重命名为' lower'在结果集中。